UNPKG

@gent-js/gent

Version:

template-based data generator.

12 lines (11 loc) 220 B
import { faker } from "@faker-js/faker"; /** * options * * length */ export const numeric = { name: "numeric", build: (commandOptions) => { return () => faker.string.numeric(commandOptions); }, };