UNPKG

@yellow-ticket/seed-json-schema

Version:

Seed a JSON Schema with random values.

7 lines (6 loc) 177 B
import { faker } from '@faker-js/faker'; export function repeat(min, max, callback) { for (let i = 0; i < faker.number.int({ min, max }); i++) { callback(); } }