react-code-dataset / next-mdx-remote /src /idle-callback-polyfill.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
563 Bytes
/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
if (typeof window !== 'undefined') {
window.requestIdleCallback =
window.requestIdleCallback ||
function (cb) {
var start = Date.now()
return setTimeout(function () {
cb({
didTimeout: false,
timeRemaining: function () {
return Math.max(0, 50 - (Date.now() - start))
},
})
}, 1)
}
window.cancelIdleCallback =
window.cancelIdleCallback ||
function (id) {
clearTimeout(id)
}
}