frontend/.pnpm-store/v3/files/bb/9011b04122916ef9b358fcaa13ea7add1eb337018b29b74760ec4fa9121fbe8e92a716505a0426d1bd8236490ec00ea0e43d81e58645ca0396ddb12c64703c

42 lines
586 B
Plaintext

"use strict";
module.exports = function (t, a, d) {
var called = 0;
var fn = t(function () {
++called;
}, 200);
fn();
a(called, 1);
fn();
fn();
a(called, 1);
// Wait 120ms
setTimeout(function () {
a(called, 1);
fn();
// Wait 120ms
setTimeout(function () {
a(called, 2);
fn();
fn();
// Wait 80ms
setTimeout(function () {
a(called, 2);
// Wait 120ms
setTimeout(function () {
a(called, 3);
// Wait 400ms
setTimeout(function () {
a(called, 3);
d();
}, 400);
}, 120);
}, 80);
}, 120);
}, 120);
};