MCPcopy Create free account
hub / github.com/GrapesJS/cli / isFunction

Function isFunction

src/utils.ts:10–10  ·  view source on GitHub ↗
(value: any)

Source from the content-addressed store, hash-verified

8export const isUndefined = (value: any) => typeof value === 'undefined';
9
10export const isFunction = (value: any): value is Function => typeof value === 'function';
11
12export const isObject = (val: any) => val !== null && !Array.isArray(val) && typeof val === 'object';
13

Callers 1

webpack.config.tsFile · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected