Skip to content

Instantly share code, notes, and snippets.

View joshuabradley012's full-sized avatar

Josh Bradley joshuabradley012

View GitHub Profile
@daliborgogic
daliborgogic / delay.js
Created December 16, 2016 15:26
Node.js Async/Await delay
'use strict'
const timeout = ms => new Promise(res => setTimeout(res, ms))
function convinceMe (convince) {
let unixTime = Math.round(+new Date() / 1000)
console.log(`Delay ${convince} at ${unixTime}`)
}
async function delay () {