Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beerush-id/utilities
Javascript Utilities
https://github.com/beerush-id/utilities
Last synced: about 2 months ago
JSON representation
Javascript Utilities
- Host: GitHub
- URL: https://github.com/beerush-id/utilities
- Owner: beerush-id
- Created: 2024-05-16T07:31:28.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-18T07:32:44.000Z (8 months ago)
- Last Synced: 2024-11-08T04:22:57.673Z (3 months ago)
- Language: TypeScript
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# @beerush/utilities
A collection of utilities for JavaScript and TypeScript.
## 🗃️ Features
- [Inspector](./src/inspector.md) - Utilities for inspecting types.
- [Object utilities](./src/object.md) - Various utilities for objects.
- [Timer](./src/timer.md) - Utilities for timing functions.
- [Transform](./src/transform.md) - Utilities for transforming value.
- [Logger](https://github.com/beerush-id/logger) - Utilities for logging.## 📦 Installation
You can install the package via package manager such as bun, npm, or yarn.
```bash
bun add @beerush/utilities
```## 🪄 Usage
You can use it in your typescript files like shown below:
**Initialization** in `./utilities.ts`
```typescript
import { isString, isObject } from '@beerush/utilities';console.log(isString('Hello, World!')); // true
console.log(isObject({})); // true
console.log(isObject([])); // false
```## License
The `@beerush/utilities` is licensed under the MIT License, ensuring a wide range of opportunities for open source use
and further development.