We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Lists all possible prefixes.
array.prefixes(x); // x: an array // --> ...prefixes
const array = require('extra-array'); [...array.prefixes([1, 2])]; // [ [], [ 1 ], [ 1, 2 ] ] [...array.prefixes([1, 2, 3])]; // [ [], [ 1 ], [ 1, 2 ], [ 1, 2, 3 ] ]
There was an error while loading. Please reload this page.