MCPcopy Index your code
hub / github.com/tinyplex/tinybase / jsonStringWithUndefined

Function jsonStringWithUndefined

test/unit/persisters/common/mocks.ts:52–55  ·  view source on GitHub ↗
(obj: unknown)

Source from the content-addressed store, hash-verified

50const SET_HOST = 'http://set.com';
51
52const jsonStringWithUndefined = (obj: unknown): string =>
53 JSON.stringify(obj, (_key, value) =>
54 value === undefined ? UNDEFINED_MARKER : value,
55 );
56
57const jsonParseWithUndefined = (str: string): any =>
58 JSON.parse(str, (_key, value) =>

Callers 1

getMockedCustomFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…