1.0.1 • Published 10 months ago
@shoaifmansuri19/ezarray v1.0.1
ezarray
Array helper functions to manage and manipulate arrays
Installation
npm i @shoaifmansuri19/ezarray
Contributing
- To conttribute please refer CONTRIBUTING.md.
How to use
In your package.json
add the following, "type": "module"
.
Example Usage
import { expandRangeArray } from '@shoaifmansuri19/ezarray';
let arr = ['1-10'];
console.log(expandRangeArray(arr)); // [1,2,3,4,5,6,7,8,9,10]