UNPKG

@yellow-ticket/seed-json-schema

Version:

Seed a JSON Schema with random values.

4 lines (3 loc) 157 B
export function isObject(value: unknown): value is Record<string, unknown> { return typeof value === 'object' && value !== null && !Array.isArray(value) }