array-concat
Returns a new array comprised of the given array's contents with the given value appended.
npm install array-concat --save
You can also use Duo, Bower or download the files manually.
npm stats
Overview
Returns a new array comprised of the given array's contents with the given value appended. Pass an array as the second argument to append multiple values.
API Example
Pointful
var concat = require('array-concat')
concat(['a', 'b'], ['c', 'd'])
Pointfree Style
var concat = require('array-concat')
var list = [['b'], ['c'], ['d']]
list.map(concat(['a']))
API
concat(list, value)
arguments
list (array)
.value (any)
.
returns
(array)
Returns an array comprised of the given array's contents with the given value(s) appended.
Related
Alternatives
Contributing
SEE: contributing.md
Licenses