chunk
Version:
Chunk converts arrays like `[1,2,3,4,5]` into arrays of arrays like `[[1,2], [3,4], [5]]`.
25 lines (24 loc) • 534 B
JSON
{
"name": "chunk",
"version": "0.0.3",
"description": "Chunk converts arrays like `[1,2,3,4,5]` into arrays of arrays like `[[1,2], [3,4], [5]]`.",
"main": "src/chunk.js",
"repository": {
"type": "git",
"url": "git://github.com/ryancole/chunk.git"
},
"keywords": [
"array",
"chunk"
],
"author": "Ryan Cole",
"license": "MIT",
"devDependencies": {
"mocha": "^8.1.1",
"prettier": "^2.0.5",
"should": "^13.2.3"
},
"scripts": {
"test": "mocha --reporter spec test/tests.js"
}
}