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.
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' );