tech-pdcast-array-utils
v0.1.0
Published
A collection of array functions
Downloads
2
Readme
tech-pdcast-array-utils
This library exposes a set of utilities for working with arrays.
Installation
npm install --save tech-pdcast-array-utils
Usage
unique
import { unique } from 'tech-pdcast-array-utils';
unique([1, 2, 3, 3, 2, 1]); // [1, 2, 3]