MCPcopy Index your code
hub / github.com/plotly/dash / isNumeric

Function isNumeric

components/dash-core-components/src/components/Input.tsx:22–22  ·  view source on GitHub ↗
(val: unknown)

Source from the content-addressed store, hash-verified

20import './css/input.css';
21
22const isNumeric = (val: unknown): val is number => fastIsNumeric(val);
23const convert = (val: unknown) => (isNumeric(val) ? +val : NaN);
24
25const isEquivalent = (v1: number, v2: number) =>

Callers 6

convertFunction · 0.85
coerceFunction · 0.85
getValueFactoryFunction · 0.85
equalEvalFunction · 0.85
idValSortFunction · 0.85
valBeforeFunction · 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…