UNPKG

@gent-js/gent

Version:

template-based data generator.

14 lines (13 loc) 271 B
import { faker } from "@faker-js/faker"; /** * options * * min * * max */ export const loremSentencesCommand = { name: "lorem.sentences", build: (commandOptions) => { // @ts-ignore return () => faker.lorem.sentences(commandOptions); }, };