This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Delays the execution of a callback or returns a promise | |
* that resolves after a specified number of seconds. | |
* | |
* @param {number} seconds - The delay duration in seconds. | |
* @param {() => void} [callback] - An optional callback to execute after the delay. | |
* @returns {number | Promise<unknown>} | |
*/ | |
export function delay(seconds: number, callback?: () => void) { | |
let timeInMilliseconds = seconds * 1000; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Check if a value is nullish | |
* i.e null, undefined, empty string, empty array, empty object | |
* ---------------- | |
*/ | |
export function isNullish(value: any) { | |
if (value == null) return true; // null or undefined | |
if (typeof value === "string" && value.trim() === "") return true; // empty string | |
if (Array.isArray(value) && value.length === 0) return true; // empty array |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Replaces dynamic parameters in a path with the provided values. | |
* | |
* For example, if the path is `/users/[id]` and the replacements map is | |
* `{ "[id]": "123" }`, the result will be `/users/123`. | |
* | |
*/ | |
export function replaceDynamicParameters( | |
pathName: string, |