Callback to promise:
*
setTimeout promisified
function wait(ms) {
return new Promise(function (resolve, reject) {
setTimeout(resolve, ms)
})
}