-
Notifications
You must be signed in to change notification settings - Fork 5
suffixes
Subhajit Sahu edited this page Dec 8, 2022
·
22 revisions
Obtain all possible suffixes.
Similar: randomSuffix, suffixes, hasSuffix.
function suffixes(x, n)
// x: an array
// n: number of values [-1 ⇒ any]
const xarray = require('extra-array');
[...xarray.suffixes([1, 2])];
// → [ [ 1, 2 ], [ 2 ], [] ]
[...xarray.suffixes([1, 2, 3])];
// → [ [ 1, 2, 3 ], [ 2, 3 ], [ 3 ], [] ]