Lists all possible suffixes.
This is part of package extra-array.
This is browserified, minified version of @extra-array/suffixes.
It is exported as global variable array_suffixes.
CDN: unpkg, jsDelivr.
array.suffixes(x, [n]);
// x: an array
// n: number of values (-1 => any)
const array = require("extra-array");
[...array.suffixes([1, 2])];
// [ [ 1, 2 ], [ 2 ], [] ]
[...array.suffixes([1, 2, 3])];
// [ [ 1, 2, 3 ], [ 2, 3 ], [ 3 ], [] ]