UNPKG

yopmail-helper

Version:

yopmail helper. It will help you receive the mail content.

9 lines (8 loc) 274 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.delay = void 0; function delay(time) { if (time === void 0) { time = 10000; } return new Promise(function (resolve) { return setTimeout(resolve, time); }); } exports.delay = delay;