ariesclark / extensions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

@ariesclark/extensions logo

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...

About


Languages

Language:TypeScript 99.7%Language:JavaScript 0.3%