UNPKG

typebox-schema-faker

Version:

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

7 lines (6 loc) 157 B
/** * Generates fake data for template literal schemas */ export const fakeTemplateLiteral = (schema, ctx) => { return ctx.randexp(schema.pattern); };