UNPKG

json-schema-library

Version:

Customizable and hackable json-validator and json-schema utilities for traversal, data generation and validation

5 lines (4 loc) 111 B
import { getTypeOf } from "./getTypeOf"; export function isObject(v) { return getTypeOf(v) === "object"; }