https://github.com/ariesclark/extensions
https://github.com/ariesclark/extensions
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ariesclark/extensions
- Owner: ariesclark
- Created: 2024-03-31T03:44:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-01T08:09:58.000Z (over 1 year ago)
- Last Synced: 2025-04-02T20:38:51.172Z (6 months ago)
- Language: TypeScript
- Size: 438 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![]()
This package is a collection of extensions for JavaScript objects, arrays, strings, numbers, and numerous other functions.
## Packages
## 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...```