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

Function isNumber

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

Source from the content-addressed store, hash-verified

104 getTypeOf(thing) == STRING;
105
106export const isNumber = (thing: unknown): thing is number =>
107 getTypeOf(thing) == NUMBER;
108
109export const isFunction = (thing: unknown): thing is (...args: any[]) => any =>
110 getTypeOf(thing) == FUNCTION;

Callers 15

stampValidateFunction · 0.90
CartesianChartFunction · 0.90
GridFunction · 0.90
XAxisFunction · 0.90
getTickLabelFunction · 0.90
getBoundsFunction · 0.90
getXTicksFunction · 0.90
getXScaleDomainFunction · 0.90
normalizeTimeValueFunction · 0.90
getTickBoundsFunction · 0.90
getSeriesSummaryFunction · 0.90
getDomainStateFunction · 0.90

Calls 1

getTypeOfFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…