MCPcopy Create free account
hub / github.com/chakra-ui/panda / isObject

Function isObject

packages/shared/src/assert.ts:7–9  ·  view source on GitHub ↗
(value: any)

Source from the content-addressed store, hash-verified

5export const isFunction = (v: any): v is AnyFunction => typeof v === 'function'
6
7export function isObject(value: any): value is Record<string, any> {
8 return typeof value === 'object' && value != null && !Array.isArray(value)
9}
10
11export const isSymbol = (v: any): v is symbol => typeof v === 'symbol'
12

Callers 15

isTokenFunction · 0.90
collectCompositionStylesFunction · 0.90
generateResetCssFunction · 0.90
RecipesClass · 0.90
serializeStylesFunction · 0.90
ConditionsClass · 0.90
PatternsClass · 0.90
mergeWithFunction · 0.90
mergePropsFunction · 0.90
isCssVarFunction · 0.90
mergeRecursivelyFunction · 0.90
compactStylesFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected