Sha256: b1eeee5ccf7b893dfdbc543d03725542db41228f7be447e40f476cb2bd3b128b
Contents?: true
Size: 516 Bytes
Versions: 14
Compression:
Stored size: 516 Bytes
Contents
'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); };
Version data entries
14 entries across 7 versions & 1 rubygems