WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

iprefixes

Subhajit Sahu edited this page May 3, 2023 · 1 revision

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 ] ]


References

Clone this wiki locally