GT2/GT2-iOS/node_modules/immediate/lib/timeout.js
2018-02-12 17:26:06 +00:00

10 lines
No EOL
147 B
JavaScript

'use strict';
exports.test = function () {
return true;
};
exports.install = function (t) {
return function () {
setTimeout(t, 0);
};
};