(value: unknown)
| 95 | } |
| 96 | |
| 97 | export function isPropertyKey(value: unknown): value is PropertyKey { |
| 98 | const type = typeof value |
| 99 | return type === 'string' || type === 'number' || type === 'symbol' |
| 100 | } |
| 101 | |
| 102 | export const NullProtoObj = /* @__PURE__ */ (() => { |
| 103 | const e = function () { } |
no outgoing calls
no test coverage detected