readablefunctionjs
v1.0.10
Published
library for convert array prototype function to more readable function
Readme
readableFunctionJs
Description
This is Package for Convert array Prototype function to more readable function
Usage
import read from 'readablefunctionjs'
const w = new read(yourArray) // eg arr = [1,2,3]
w.insertElementinFirstPosition(4)
console.log(w.Array) => [4,1,2,3]