(obj)
| 99 | } |
| 100 | |
| 101 | function isPlainObject(obj) { |
| 102 | return typeof obj === 'object' && obj.constructor === Object && obj.toString() === '[object Object]'; |
| 103 | } |
| 104 | |
| 105 | function dropUndefinedKeys(obj) { |
| 106 | const newObj = {}; |
no test coverage detected