1.0.3 • Published 2 years ago

@jswork/next-chunk v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

next-chunk

Creates an array of elements split into groups the length of size.

version license size download

installation

npm install -S @jswork/next-chunk

apis

apitypedescription
nx.chunk(inArray,inChunk)Create split chunks

usage

import '@jswork/next-chunk';

// array
const arr = [1,2,3,4,5,6,7,8];
const res = nx.chunk(arr, 3);
// result:
// [ [ 1, 2, 3 ], [ 4, 5, 6 ], [ 7, 8 ] ]


// buffer/file
const file =new File(["foobar"], "foo.txt", {
  type: "text/plain",
});

// result:
const res = nx.chunk(file, 2);
// [ Blob, Blob, Blob ] 

license

Code released under the MIT license.