tx-manager/src/utils.js

9 lines
150 B
JavaScript
Raw Normal View History

2020-10-01 07:56:47 +03:00
/**
* A promise that resolves after `ms` milliseconds
*/
2020-10-02 12:55:44 +03:00
const sleep = ms => new Promise(res => setTimeout(res, ms))
2020-10-01 07:56:47 +03:00
module.exports = {
sleep,
}