(val)
| 64 | var propIsEnumerable = Object.prototype.propertyIsEnumerable; |
| 65 | |
| 66 | function toObject(val) { |
| 67 | if (val === null || val === undefined) { |
| 68 | throw new TypeError('Object.assign cannot be called with null or undefined'); |
| 69 | } |
| 70 | |
| 71 | return Object(val); |
| 72 | } |
| 73 | |
| 74 | function shouldUseNative() { |
| 75 | try { |
no outgoing calls
no test coverage detected
searching dependent graphs…