Skip to content

Useful utility functions for JavaScript and TypeScript

License

Notifications You must be signed in to change notification settings

reynotekoppele/reyno-utils

Repository files navigation

Utils

Utils is a collection of simple utilty functions that can be used to simplify and improve your code.

The package is available in CommonJS and ESM format.

Installation and Usage

Prerequisites: Node.js (>=18.0.0) and pnpm (>=8.6.0)

You can install the package using the command:

npm install @reyno/utils

Then, you can import the functions you want to use:

import { sleep } from '@reyno/utils';

Or, for CommonJS:

const { sleep } = require( '@reyno/utils' );

Functions