UNPKG

typebox-schema-faker

Version:

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

9 lines (8 loc) 268 B
/** * Generates fake data for date schemas */ export const fakeDate = (schema, ctx) => { const from = schema.minimumTimestamp ?? new Date(-8.64e15); const to = schema.maximumTimestamp ?? new Date(8.64e15); return ctx.faker.date.between({ from, to }); };