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