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

Function isUndefined

src/common/other.ts:64–65  ·  view source on GitHub ↗
(thing: unknown)

Source from the content-addressed store, hash-verified

62 thing == null;
63
64export const isUndefined = (thing: unknown): thing is undefined =>
65 thing === undefined;
66
67export const dateNew = (value?: any): Date =>
68 isUndefined(value) ? new date() : new date(value);

Callers 15

useThingFunction · 0.90
useThingOrThingByIdFunction · 0.90
useRedoInformationFunction · 0.90
RemoteRowViewFunction · 0.90
WrapFunction · 0.90
reduceCallbacksFunction · 0.90
ConfirmableActionsFunction · 0.90
handleKeyDownFunction · 0.90
contentFunction · 0.90
StoreViewFunction · 0.90
MetricsViewFunction · 0.90
IndexesViewFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…