UNPKG

@extra-array/concat

Version:
11 lines (10 loc) 186 B
'use strict'; function concat$(x, ...ys) { for (var y of ys) x.push(...y); return x; } function concat(...xs) { return concat$([], ...xs); } module.exports = concat;