()
| 93 | * @returns {*} |
| 94 | */ |
| 95 | export function merge() { |
| 96 | let result = arguments[0]; |
| 97 | for (var i = 0; i < arguments.length; i++) { |
| 98 | if (i) { |
| 99 | result = mergeObj(result, arguments[i]); |
| 100 | } |
| 101 | } |
| 102 | return result; |
| 103 | } |
| 104 | |
| 105 | /** |
| 106 | * Get the value in the object based on the text path. If you need to support arrays, please use the get method of lodash |
nothing calls this directly
no test coverage detected