UNPKG

@gent-js/gent

Version:

template-based data generator.

12 lines (11 loc) 285 B
import { faker } from "@faker-js/faker"; /** * options * * style: 'human' | 'national' | 'international' (default: 'human') */ export const phoneNumber = { name: "phone.number", build: (commandOptions) => { return () => faker.phone.number(commandOptions); }, };