(key: string)
| 1 | function isSafeKey(key: string): boolean { |
| 2 | return key !== '__proto__' && key !== 'constructor' && key !== 'prototype' |
| 3 | } |
| 4 | |
| 5 | /** |
| 6 | * Merge target and source into a new null-proto object, filtering dangerous keys. |
no outgoing calls
no test coverage detected