https://github.com/zoubin/arrayify-slice
slice Array-like collections and return an array
https://github.com/zoubin/arrayify-slice
Last synced: 4 days ago
JSON representation
slice Array-like collections and return an array
- Host: GitHub
- URL: https://github.com/zoubin/arrayify-slice
- Owner: zoubin
- Created: 2015-05-29T06:58:35.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-29T07:34:08.000Z (about 11 years ago)
- Last Synced: 2025-09-29T13:11:57.544Z (9 months ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# arrayify-slice
slice Array-like collections and return an array
## Usage
```javascript
var arrayify = require('arrayify-slice');
!function () {
console.log(arrayify(arguments, 1, 3));
// [1, 2]
}(0, 1, 2, 3);
```