UNPKG

zotero-web-library

Version:

Web library from zotero.org

13 lines (10 loc) 285 B
'use strict'; //return a promise that will resolve after mseconds milliseconds var Delay = function Delay(mseconds) { return new Promise(function (resolve, reject) { setTimeout(function () { resolve(); }, mseconds); }); }; module.exports = Delay;