MCPcopy Index your code
hub / github.com/apache/echarts / isNumeric

Function isNumeric

src/util/number.ts:785–787  ·  view source on GitHub ↗
(val: unknown)

Source from the content-addressed store, hash-verified

783 * Definition of "numeric": see `numericToNumber`.
784 */
785export function isNumeric(val: unknown): val is number {
786 return !isNaN(numericToNumber(val));
787}
788
789/**
790 * Use random base to prevent users hard code depending on

Callers 4

testNumericFunction · 0.90
prepareLayoutInfoFunction · 0.90
isValidIdOrNameFunction · 0.90
addCommasFunction · 0.90

Calls 1

numericToNumberFunction · 0.85

Tested by 1

testNumericFunction · 0.72

Used in the wild real call sites across dependent graphs

searching dependent graphs…