An open API service indexing awesome lists of open source software.

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

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);
```