Files
enviPy-bayer/static/js/ketcher2/node_modules/timers-ext/test/max-timeout.js
2025-06-23 20:13:54 +02:00

12 lines
216 B
JavaScript

'use strict';
module.exports = function (t, a, d) {
var invoked, id;
id = setTimeout(function () { invoked = true; }, t);
setTimeout(function () {
a(invoked, undefined);
clearTimeout(id);
d();
}, 100);
};