https://github.com/0tickpulse/tick-ts-utils
https://github.com/0tickpulse/tick-ts-utils
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/0tickpulse/tick-ts-utils
- Owner: 0tickpulse
- License: agpl-3.0
- Created: 2023-01-19T08:12:51.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-04-19T01:28:08.000Z (about 3 years ago)
- Last Synced: 2025-03-18T00:45:11.739Z (about 1 year ago)
- Language: TypeScript
- Size: 196 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# 🚀 Tick TS Utils
A large repository of utility things for JavaScript and TypeScript that are made for my use.
## 📦 Installation
```bash
npm install tick-ts-utils
pnpm install tick-ts-utils
yarn add tick-ts-utils
```
## 📖 Usage
After installing the package, you can import the things you want to use.
```ts
import { emptyFunction } from "tick-ts-utils";
await someAsyncFunction().catch(emptyFunction);
```
You can also import `tick-ts-utils/out/namespaced.js` to everything under a namespace.
```ts
import { functions } from "tick-ts-utils/out/namespaced.js";
await someAsyncFunction().catch(functions.emptyFunction);
```
This can be useful if you want better IntelliSense.
## [📝 License](./LICENSE)
## [📄 Changelog](./CHANGELOG.md)