Skip to content

Instantly share code, notes, and snippets.

View ganyire's full-sized avatar

Leonard Ganyire ganyire

  • Ecocash Holdings
  • 6001 Westlea, Harare, Zimbabwe
  • X @NGanyire
View GitHub Profile
@ganyire
ganyire / utils.ts
Last active October 10, 2024 03:15
Typescript utils
/**
* 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;
@ganyire
ganyire / RemoveEmptyObjects.ts
Last active October 10, 2024 03:17
Remove empty objects from a given object
/**
* 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
@ganyire
ganyire / ReplaceDynamicParameters.ts
Last active August 1, 2024 06:20
Resolve dynamic links in Next.js
/**
* 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,