UNPKG

typebox-schema-faker

Version:

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

7 lines (6 loc) 188 B
/** * Generates fake data for bigint schemas */ export const fakeBigInt = (schema, ctx) => { return BigInt(ctx.faker.number.bigInt({ min: schema.minimum, max: schema.maximum })); };