Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stevemao/list-to-matrix
https://github.com/stevemao/list-to-matrix
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/stevemao/list-to-matrix
- Owner: stevemao
- Created: 2018-07-21T08:29:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-07-22T02:30:27.000Z (over 6 years ago)
- Last Synced: 2024-12-19T07:37:05.010Z (15 days ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
> Convert list to matrix
Code copied from https://stackoverflow.com/a/4492417/2075423
```js
listToMatrix([1, 2, 3, 4, 5, 6, 7, 8, 9], 3)
// => [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
```