There was an error while loading. Please reload this page.
Keeps last n values only. 🏃 📼 📦 🌔 📒
Alternatives: take, takeRight, takeWhile, takeWhileRight. Similar: take, drop.
iterable.takeRight(x, [n]); // x: an iterable // n: number of values (1)
const iterable = require('extra-iterable'); var x = [1, 2, 3, 4, 5]; [...iterable.takeRight(x, 2)]; // [ 4, 5 ] [...iterable.takeRight(x, 3)]; // [ 3, 4, 5 ]