UNPKG

129 BJavaScriptView Raw
1'use strict';
2function concat$(x, ...ys) {
3 for (var y of ys)
4 x.push(...y);
5 return x;
6}
7module.exports = concat$;