0.3.3 • Published 1 year ago

@ariesclark/extensions v0.3.3

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

This package is a collection of extensions for JavaScript objects, arrays, strings, numbers, and numerous other functions.

Packages

Installation

npm install @ariesclark/extensions
import { identity, empty, pick } from '@ariesclark/extensions';

identity('lorem'); // 'lorem'
pick({ hello: 'world', lorem: 'ipsum' }, ['hello']); // { hello: 'world' }
// And so on...