UNPKG

@gent-js/gent

Version:

template-based data generator.

13 lines (12 loc) 295 B
import { faker } from "@faker-js/faker"; /** * options * * length * * casing: 'upper' | 'lower' | 'mixed' (default: 'mixed') */ export const alphanumeric = { name: "alphanumeric", build: (commandOptions) => { return () => faker.string.alphanumeric(commandOptions); }, };