@jswork/next-concat
v1.0.1
Published
Creates a new array joining a wrapped array with any additional arrays and/or values.
Downloads
4
Readme
next-concat
Creates a new array joining a wrapped array with any additional arrays and/or values.
installation
npm install -S @jswork/next-concat
usage
import '@jswork/next-concat';
const arr1 = [1,2];
const arr2 = ['a'];
const result = nx.concat(arr1,arr2);
//[1,2,'a'];
license
Code released under the MIT license.