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

Function isObject

apps/chart/src/helpers/utils.ts:38–40  ·  view source on GitHub ↗
(obj: unknown)

Source from the content-addressed store, hash-verified

36}
37
38export function isObject(obj: unknown): obj is object {
39 return typeof obj === 'object' && obj !== null;
40}
41
42export function isFunction(value: unknown): value is Function {
43 return typeof value === 'function';

Callers 8

getValueStringFunction · 0.90
getDateFormatFunction · 0.90
isLineCoordinateSeriesFunction · 0.90
makeSolidDataFunction · 0.90
isStackObjectFunction · 0.90
deepMergedCopyFunction · 0.70
deepCopyArrayFunction · 0.70
deepCopyFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected