deno.land / x / billboardjs@3.6.0 / module / browser.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/** * Copyright (c) 2017 ~ present NAVER Corp. * billboard.js project is licensed under the MIT license *//** * Window object * @private *//* eslint-disable no-new-func, no-undef */export {win as window, doc as document};
const win = (() => { const root = (typeof globalThis === "object" && globalThis !== null && globalThis.Object === Object && globalThis) || (typeof global === "object" && global !== null && global.Object === Object && global) || (typeof self === "object" && self !== null && self.Object === Object && self);
return root || Function("return this")();})();/* eslint-enable no-new-func, no-undef */
// fallback for non-supported environmentswin.requestIdleCallback = win.requestIdleCallback || (cb => setTimeout(cb, 1));// win.cancelIdleCallback = win.cancelIdleCallback || (id => clearTimeout(id));win.requestAnimationFrame = win.requestAnimationFrame || (cb => setTimeout(cb, 1));
const doc = win?.document;

billboardjs

Version Info

Tagged at
a year ago