(...args)
| 814 | } |
| 815 | |
| 816 | static _baseMerge(...args) { |
| 817 | _.assignWith(...args); |
| 818 | this._conformIncludes(args[0], this); |
| 819 | this._uniqIncludes(args[0]); |
| 820 | return args[0]; |
| 821 | } |
| 822 | |
| 823 | static _mergeFunction(objValue, srcValue, key) { |
| 824 | if (Array.isArray(objValue) && Array.isArray(srcValue)) { |
no test coverage detected