UNPKG

@gent-js/gent

Version:

template-based data generator.

13 lines (12 loc) 303 B
import { faker } from "@faker-js/faker"; /** * options * * length * * variant: 'alpha-2' | 'alpha-3' | 'numeric' (default: 'alpha-2') */ export const countryCode = { name: "countryCode", build: (commandOptions) => { return () => faker.location.countryCode(commandOptions); }, };