(obj)
| 58 | */ |
| 59 | export function mergeObj(objA, objB, concatArr) { |
| 60 | function isObj(obj) { |
| 61 | return Object.prototype.toString.call(obj) === "[object Object]"; |
| 62 | } |
| 63 | function isArr(arr) { |
| 64 | return Object.prototype.toString.call(arr) === "[object Array]"; |
| 65 | } |