subarray.js 134 Bytes edit raw blame history 1 2 3 4 5 module.exports = function(source, from, to) { return arguments.length === 2 ? source.slice(from) : source.slice(from, to) }