(object)
| 383 | }; |
| 384 | |
| 385 | const initCloneObject = (object) => { |
| 386 | return (typeof object.constructor == 'function' && !isPrototype(object)) |
| 387 | ? Object.create(Object.getPrototypeOf(object)) |
| 388 | : {}; |
| 389 | }; |
| 390 | |
| 391 | const getSymbols = (object) => { |
| 392 | if (object == null) { |
no test coverage detected