mirror of https://github.com/bobwen-dev/htpdate
6 lines
112 B
CoffeeScript
6 lines
112 B
CoffeeScript
|
util = require 'util'
|
||
|
|
||
|
module.exports = util.promisify (ms, cb) ->
|
||
|
return cb() if ms <= 0
|
||
|
setTimeout cb, ms
|