Skip to content

Instantly share code, notes, and snippets.

View vijaywm's full-sized avatar

Vijaya Raghavan vijaywm

  • Ahmedabad
View GitHub Profile
@vijaywm
vijaywm / js-hacks.md
Last active April 12, 2021 01:46
Js hacks for Frappe
async function timer (seconds) {
  return new Promise(resolve => setTimeout(resolve, seconds * 1000))
}

// Usage

...
await timer(0.5)
...