UNPKG

typebox-schema-faker

Version:

Generate fake data from TypeBox schemas for testing, prototyping and development.

7 lines (6 loc) 187 B
/** * Generates fake data for boolean schemas */ export const fakeBoolean = (_schema, ctx, options) => { return ctx.faker.datatype.boolean({ probability: options.probability }); };