UNPKG

@gent-js/gent

Version:

template-based data generator.

13 lines (12 loc) 232 B
import { faker } from "@faker-js/faker"; /** * options * * min * * max */ export const intCommand = { name: "int", build: (commandOptions) => { return () => faker.number.int(commandOptions).toString(); }, };