MCPcopy
hub / github.com/stampit-org/stampit / isFunction

Function isFunction

stampit.ts:433–435  ·  view source on GitHub ↗
(obj: any)

Source from the content-addressed store, hash-verified

431 * ==========================================================================*/
432
433function isFunction(obj: any): obj is Function {
434 return typeof obj === "function";
435}
436
437function isObject(obj: any): boolean {
438 return (obj && typeof obj === "object") || isFunction(obj);

Callers 4

isObjectFunction · 0.70
isStampFunction · 0.70
createEmptyStampFunction · 0.70
composeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…