UNPKG

lorem-ipsum

Version:

Generates passages of lorem ipsum text suitable for use as placeholder copy in web pages, graphics, and more. Works in the browser, NodeJS, and React Native.

12 lines (10 loc) 301 B
/** * @param length Length "x". * @returns An array of indexes of length "x". */ const makeArrayOfLength = (length: number = 0): number[] => { return Array.apply(null, Array(length)).map( (item: any, index: number): number => index, ); }; export default makeArrayOfLength;