MCPcopy Index your code
hub / github.com/angular/angular / isFunction

Function isFunction

packages/zone.js/lib/common/utils.ts:546–548  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

544}
545
546export function isFunction(value: unknown): value is Function {
547 return typeof value === 'function';
548}
549
550export function isNumber(value: unknown): value is number {
551 return typeof value === 'number';

Callers 2

scheduleTaskFunction · 0.90
patchTimerFunction · 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…