UNPKG

@hackplan/polaris

Version:

Shopify’s product component library

6 lines (5 loc) 184 B
import { TypeOf } from '../types'; export function isObject(value) { const type = typeof value; return value != null && (type === TypeOf.Object || type === TypeOf.Function); }