1.0.1 • Published 10 months ago

@shoaifmansuri19/ezarray v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

ezarray

Array helper functions to manage and manipulate arrays

Installation

npm i @shoaifmansuri19/ezarray

Contributing

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]