(value: any)
| 231 | * Needed such that the sentinel is converted back to `undefined` before comparison. |
| 232 | */ |
| 233 | export function denormalizeUndefined(value: any): any { |
| 234 | if (value === UNDEFINED_SENTINEL) { |
| 235 | return undefined |
| 236 | } |
| 237 | return value |
| 238 | } |
| 239 | |
| 240 | /** |
| 241 | * Compare two values for equality, with special handling for Uint8Arrays and Buffers |
no outgoing calls
no test coverage detected
searching dependent graphs…