arr-fns
v1.0.1
Published
Utility functions for arrays.
Downloads
4
Maintainers
Readme
arr-fns
Utility functions for arrays.
Installation
This package is distributed via npm:
npm install arr-fns
Motivation
This package encompasses other utility libraries around arrays, namely:
The goal is to have everything easily accessible and packaged in a single library.
Usage
You can use this library either as an ES module or a CommonJS package:
import { filter, map, reduce, sort } from "arr-fns";
- or -
const { filter, map, reduce, sort } = require("arr-fns");
For more detailed usage (including examples) please check each library's documentation.
License
MIT