10 lines
147 B
JavaScript
Raw Normal View History

2021-02-11 21:31:41 +08:00
'use strict';
exports.test = function () {
return true;
};
exports.install = function (t) {
return function () {
setTimeout(t, 0);
};
};