UNPKG

@gent-js/gent

Version:

template-based data generator.

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