@micro-js/concat
v1.0.0
Published
Functional version of Array.prototype.concat
Readme
concat
Functional version of Array.prototype.concat
Installation
$ npm install @micro-js/concatUsage
var concat = require('@micro-js/concat')
concat([1], [2] // -> [1, 2]
concat([1], 2) // -> [1, 2]API
concat(a, b)
a- Arrayb- Array or scalar value to concat ontoa
Returns: A new array with btacked onto the end of a.
License
MIT
