Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paramdeo/ajuda
A helpful JavaScript utility library.
https://github.com/paramdeo/ajuda
helper javascript library npm
Last synced: about 2 months ago
JSON representation
A helpful JavaScript utility library.
- Host: GitHub
- URL: https://github.com/paramdeo/ajuda
- Owner: paramdeo
- License: agpl-3.0
- Created: 2023-05-02T02:15:56.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-08-01T17:55:21.000Z (over 1 year ago)
- Last Synced: 2024-09-13T04:13:37.044Z (4 months ago)
- Topics: helper, javascript, library, npm
- Language: HTML
- Homepage: https://ajuda.page
- Size: 480 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![](https://github.com/paramdeo/ajuda/raw/master/og.png)
A helpful JavaScript utility library.
## Features
- No dependencies
- Immutable methods
- TypeScript support
- IntelliSense support
- Lightweight (~3kB gzipped)
- Well-tested (75+ test cases)
- Methods for strings, numbers, arrays, objects, and sets## Installation
To install Ajuda, run the following command:
```sh
npm i ajuda
```## Usage
```js
import { string, number } from 'ajuda'string.reverse("dlrow olleh") // "hello world"
let n = number
n.range(1, 5) // [1, 2, 3, 4, 5]
```## Documentation
Full documentation can be found at [https://ajuda.page](https://ajuda.page)
## License
[AGPL-3.0](LICENSE)