https://github.com/leafiy/array-chunk
https://github.com/leafiy/array-chunk
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/leafiy/array-chunk
- Owner: leafiy
- Created: 2020-11-19T21:15:52.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-19T21:18:55.000Z (over 5 years ago)
- Last Synced: 2025-09-21T16:46:15.164Z (9 months ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# array-chunk
```
chunk([1,2,3,4,5],2)
// [[1,2],[3,4],[5]]
```