(...args)
| 791 | } |
| 792 | |
| 793 | static _baseMerge(...args) { |
| 794 | _.assignWith(...args); |
| 795 | this._conformIncludes(args[0], this); |
| 796 | this._uniqIncludes(args[0]); |
| 797 | return args[0]; |
| 798 | } |
| 799 | |
| 800 | static _mergeFunction(objValue, srcValue, key) { |
| 801 | if (Array.isArray(objValue) && Array.isArray(srcValue)) { |
no test coverage detected