k-l-lambda's picture
updated node_modules
4cadbaf
raw
history blame contribute delete
148 Bytes
'use strict';
const internals = {};
module.exports = function (timeout) {
return new Promise((resolve) => setTimeout(resolve, timeout));
};