golden-array-utils
TypeScript icon, indicating that this package has built-in type declarations

2.0.5 • Public • Published

Golden Array Utils

Immutable Array Utility Functions

I found myself repeating logic repeatedly when working with immutable or stateful data. To save some time I have compiled some useful array functionality into an importable package... with tests!

The purpose of this package is that it will never modify the original array.

Installation

Just run npm install golden-array-utils and you're good to go!

Usage

To use the array utils in your project simply import the Array Utils (Au) object

import Au from 'golden-array-utils'

And use one of it's functions

this.setState({ todos: Au.remove(this.state.todos, clickedIndex) })

or to improve tree shaking import a specific part of the package

import operations from 'golden-array-utils/operations'
import addManyAt from 'golden-array-utils/operations/addManyAt'

Functions

Every function returns a new array with the function applied. The original array will never be altered.

Name Function
.clone() Returns a brand new version of the exact same array.
.move() Moves an element of the array from one index to another
.remove() Removes an array element at index
.replace() Replaces the element at index with value
.add() Push value on to the end of the array
.addAt() Add value at a specific index
.addManyAt() Add all values starting at index

Package Sidebar

Install

npm i golden-array-utils

Weekly Downloads

13

Version

2.0.5

License

ISC

Unpacked Size

16.9 kB

Total Files

56

Last publish

Collaborators