UNPKG

typebox-schema-faker

Version:

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

7 lines (6 loc) 142 B
/** * Generates fake data for bigint schemas */ export const fakeSymbol = (_schema, ctx) => { return Symbol(ctx.faker.lorem.word()); };