"use strict"; module.exports = function concat(arrays) { return arrays[0].concat(... arrays.slice(1)); };