UNPKG

msw

Version:

Seamless REST/GraphQL API mocking library for browser and Node.js.

7 lines (6 loc) 182 B
/** * Determines if the given value is an object. */ export function isObject(value: any): boolean { return value != null && typeof value === 'object' && !Array.isArray(value) }