bns_zhgd_web/node_modules/@hapi/hoek/lib/wait.js

10 lines
148 B
JavaScript
Raw Normal View History

2025-04-02 10:01:21 +08:00
'use strict';
const internals = {};
module.exports = function (timeout) {
return new Promise((resolve) => setTimeout(resolve, timeout));
};