An open API service indexing awesome lists of open source software.

https://github.com/ariesclark/extensions


https://github.com/ariesclark/extensions

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          


@ariesclark/extensions logo

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

## Packages



@ariesclark/extensions


@ariesclark/array


@ariesclark/number


@ariesclark/object


@ariesclark/string

## Installation

```sh
npm install @ariesclark/extensions
```

```typescript
import { identity, empty, pick } from '@ariesclark/extensions';

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

```