UNPKG

@yellow-ticket/seed-json-schema

Version:

Seed a JSON Schema with random values.

11 lines (10 loc) 242 B
import { faker } from '@faker-js/faker'; export function seedBoolean(schema) { if (schema.const) { return schema.const; } if (schema.examples) { return schema.examples; } return faker.datatype.boolean(); }