array-concat
v0.1.1
Published
Returns a new array comprised of the given array's contents with the given value appended.
Downloads
132
Maintainers
Readme
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'])
//=> ['a', 'b', 'c', 'd']
Pointfree Style
var concat = require('array-concat')
var list = [['b'], ['c'], ['d']]
list.map(concat(['a']))
//=> [['a', 'b'], ['a', 'c'], ['a', 'd']]
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