UNPKG

188 BJavaScriptView Raw
1'use strict';
2
3module.exports = (timeInMs) => {
4 return (reason) => {
5 return new Promise((resolve, reject) => {
6 setTimeout(reject.bind(null, reason), timeInMs);
7 });
8 };
9};