We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
List all possible prefixes.
Alternatives: iprefixes, prefixes. Similar: randomPrefix, prefixes, hasPrefix.
function iprefixes(x, n) // x: an array // n: number of values [-1 ⇒ any]
const xarray = require('extra-array'); [...xarray.iprefixes([1, 2])]; // → [ [], [ 1 ], [ 1, 2 ] ] [...xarray.iprefixes([1, 2, 3])]; // → [ [], [ 1 ], [ 1, 2 ], [ 1, 2, 3 ] ]