Files
yusheng-h5/uni_modules/UniDevTools/node_modules/licia/ric.js
2025-08-11 11:06:07 +08:00

23 lines
526 B
JavaScript

var root = require('./root');
var now = require('./now');
exports =
root.requestIdleCallback ||
function(cb) {
var start = now();
return setTimeout(function() {
cb({
didTimeout: false,
timeRemaining: function() {
return Math.max(0, 50 - (now() - start));
}
});
}, 1);
};
exports.cancel =
root.cancelIdleCallback ||
function(id) {
clearTimeout(id);
};
module.exports = exports;