UNPKG

120 BJavaScriptView Raw
1function concat$(x, ...ys) {
2 for (var y of ys)
3 x.push(...y);
4 return x;
5}
6export { concat$ as default };