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

Function isObject

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

Source from the content-addressed store, hash-verified

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
14export const printRow = (str: string, {
15 color = 'green',

Callers 1

webpack.config.tsFile · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected