module.exports = (time) => {
return new Promise(function (resolve) {
setTimeout(function () {
resolve("anything");
}, time);
});
};