Sha256: 3238e3ed704fe1ba3d523a8a5c8ffd8ca3250a8898cf75ac5e6b13d132a8d226
Contents?: true
Size: 537 Bytes
Versions: 28
Compression:
Stored size: 537 Bytes
Contents
/** Create a type that represents either the value or an array of the value. @see Promisable @example ``` import type {Arrayable} from 'type-fest'; function bundle(input: string, output: Arrayable<string>) { const outputList = Array.isArray(output) ? output : [output]; // … for (const output of outputList) { console.log(`write to: ${output}`); } } bundle('src/index.js', 'dist/index.js'); bundle('src/index.js', ['dist/index.cjs', 'dist/index.mjs']); ``` @category Array */ export type Arrayable<T> = T | readonly T[];
Version data entries
28 entries across 28 versions & 2 rubygems