MCPcopy
hub / github.com/apache/echarts / isNullableNumberFinite

Function isNullableNumberFinite

src/util/number.ts:833–835  ·  view source on GitHub ↗
(val: number | NullUndefined)

Source from the content-addressed store, hash-verified

831 * For platform-agnosticism, `Number.isFinite` is not used.
832 */
833export function isNullableNumberFinite(val: number | NullUndefined) {
834 return val != null && isFinite(val);
835}

Callers 10

getStartValueFunction · 0.90
sanitizeMethod · 0.90
buildPayloadsBySeriesFunction · 0.90
constructorMethod · 0.90
metricLiPosMinGapImplFunction · 0.90
scaleCalcAlignFunction · 0.90
calcBandWidthFunction · 0.90
isNumberUserReadableFunction · 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…