* Unwraps any Value expressions
(input: any)
| 38 | * Unwraps any Value expressions |
| 39 | */ |
| 40 | function unwrapVal(input: any): any { |
| 41 | if (input instanceof ValClass) return input.value |
| 42 | return input |
| 43 | } |
| 44 | |
| 45 | const UNSAFE_ALIAS_SEGMENTS = new Set([`__proto__`, `prototype`, `constructor`]) |
| 46 |
no outgoing calls
no test coverage detected