lightdash

esm
A small TypeScript utility library to complement lodash
Version 14.0.0 License MIT
Keywords
lodashutility
INSTALL
Type:
Version:
- Static
- Latest Patch
- Latest Minor
- Latest Major
- 14.0.0
- 13.0.3
- 13.0.2
- 13.0.1
- 13.0.0
- 12.0.1
- 12.0.0
- 11.2.0
- 11.1.2
- 11.1.1
- 11.1.0
- 11.0.0
- 10.3.0
- 10.2.4
- 10.2.3
- 10.2.2
- 10.2.1
- 10.2.0
- 10.1.0
- 10.0.1
- 10.0.0
- 9.1.1
- 9.1.0
- 9.0.5
- 9.0.4
- 9.0.3
- 9.0.2
- 9.0.1
- 9.0.0
- 8.2.0
- 8.1.0
- 8.0.0
- 7.2.0
- 7.1.0
- 7.0.1
- 7.0.0
- 6.3.0
- 6.2.0
- 6.1.0
- 6.0.3
- 6.0.2
- 6.0.1
- 6.0.0
- 5.0.6
- 5.0.5
- 5.0.4
- 5.0.3
- 5.0.2
- 5.0.1
- 5.0.0
- 4.1.6
- 4.1.5
- 4.1.4
- 4.1.3
- 4.1.2
- 4.1.1
- 4.1.0
- 4.0.1
- 4.0.0
- 3.4.3
- 3.4.2
- 3.4.1
- 3.4.0
- 3.3.3
- 3.3.2
- 3.3.1
- 3.3.0
- 3.2.1
- 3.2.0
- 3.1.1
- 3.1.0
- 3.0.1
- 3.0.0
- 2.10.0
- 2.9.1
- 2.9.0
- 2.8.3
- 2.8.2
- 2.8.1
- 2.8.0
- 2.7.3
- 2.7.2
- 2.7.1
- 2.7.0
- 2.6.4
- 2.6.3
- 2.6.2
- 2.6.1
- 2.6.0
- 2.5.4
- 2.5.3
- 2.5.2
- 2.5.0
- 2.4.0
- 2.3.2
- 2.3.1
- 2.3.0
- 2.2.0
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.5.1
- 1.5.0
- 1.4.0
- 1.3.0
- 1.2.2
- 1.2.1
- 1.2.0
- 14.0.0-5
- 14.0.0-4
- 14.0.0-3
- 14.0.0-2
- 14.0.0-1
- 14.0.0-0
- 13.0.0-7
- 13.0.0-6
- 13.0.0-5
- 13.0.0-4
- 13.0.0-3
- 13.0.0-2
- 13.0.0-1
- 13.0.0-0
- 12.0.0-1
- 12.0.0-0
- 11.1.0-2
- 11.1.0-1
- 11.1.0-0
- 11.0.0-1
- 11.0.0-0
- 9.0.0-3
- 9.0.0-2
- 9.0.0-1
- 9.0.0-0
lightdash
A small JavaScript utility library to complement lodash.
Introduction
Lightdash is a utility library aiming to complement lodash.
Usage
Install it:
npm install lightdash
And import it:
import { groupMapBy } from "lightdash";
groupMapBy([1, 2, 3, 4, 5], (val) => val % 2);