MCPcopy
hub / github.com/nhn/tui.chart / isNumber

Function isNumber

apps/chart/src/helpers/utils.ts:26–28  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

24}
25
26export function isNumber(value: unknown): value is number {
27 return typeof value === 'number';
28}
29
30export function isString(value: unknown): value is string {
31 return typeof value === 'string';

Callers 15

isSeriesOverflowedFunction · 0.90
hasStepSizeFunction · 0.90
getRoughScaleFunction · 0.90
renderMethod · 0.90
renderTooltipMethod · 0.90
getClosestModelMethod · 0.90
ScatterSeriesClass · 0.90
BubbleSeriesClass · 0.90
makeTooltipDataMethod · 0.90
RadialBarSeriesClass · 0.90
TreemapSeriesClass · 0.90
getDataLabelsMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected