Skip to content
Subhajit Sahu edited this page May 10, 2020 · 18 revisions

Gets values except last. 🏃 [:vhs:] 📦 🌔

Similar: head, tail, init, last.

iterable.init(x);
// x: an iterable
const iterable = require('extra-iterable');

[...iterable.init([1, 2, 3])];
// [1, 2]

[...iterable.init([1])];
// []

references

Clone this wiki locally