@cilladev/qutils
v1.0.3
Published
Collection of utility functions
Downloads
2
Maintainers
Readme
Qutils
A collection of private util functions for my personal development.
Installation
Install the package into your project directory:
npm i @cilladev/qutils
Utility Functions
Parameters
milliseconds
(integer): The number of milliseconds to delay the program execution.
Return Value
A promise that resolves after the specified delay.
Example Usage
import { delay } from "@cilladev/qutil"
async function sendRequest() {
await delay(1000) // delay for 1 second
//...
}