Skip to content
wolfram77 edited this page Mar 27, 2020 · 18 revisions

Gets values except last.

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