/var/www/greso.tech/server/nsm/node_modules/timers-ext/test
NameSizeModeActions
promise/-0755rm
promise_/-0755rm
.eslintrc.json620644editdlrm
delay.js5540644editdlrm
max-timeout.js2170644editdlrm
once.js5180644editdlrm
throttle.js5860644editdlrm
valid-timeout.js2000644editdlrm
Edit: /var/www/greso.tech/server/nsm/node_modules/timers-ext/test/once.js (518B)
"use strict"; module.exports = function (t, a, d) { var called = 0, fn = t(function () { ++called; }); fn(); fn(); fn(); setTimeout(function () { a(called, 1); called = 0; fn = t(function () { ++called; }, 50); fn(); fn(); fn(); setTimeout(function () { fn(); fn(); setTimeout(function () { fn(); fn(); setTimeout(function () { fn(); fn(); setTimeout(function () { a(called, 1); d(); }, 70); }, 30); }, 30); }, 30); }, 10); };