MCPcopy Index your code
hub / github.com/TanStack/db / denormalizeUndefined

Function denormalizeUndefined

packages/db/src/utils/comparison.ts:233–238  ·  view source on GitHub ↗
(value: any)

Source from the content-addressed store, hash-verified

231 * Needed such that the sentinel is converted back to `undefined` before comparison.
232 */
233export 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

Callers 4

constructorMethod · 0.85
orderedEntriesArrayMethod · 0.85
valueMapDataMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…