MCPcopy
hub / github.com/chartjs/Chart.js / isObject

Function isObject

src/helpers/helpers.core.ts:53–55  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

51 * @since 2.7.0
52 */
53export function isObject(value: unknown): value is AnyObject {
54 return value !== null && Object.prototype.toString.call(value) === '[object Object]';
55}
56
57/**
58 * Returns true if `value` is a finite number, else returns false

Callers 15

parseMethod · 0.85
configureMethod · 0.85
toClipFunction · 0.85
_dataCheckMethod · 0.85
parseMethod · 0.85
updateDimsFunction · 0.85
getMethod · 0.85
mergeScaleConfigFunction · 0.85
createResolverMethod · 0.85
hasFunctionFunction · 0.85
titleArgsFunction · 0.85
_computeGridLineItemsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected