Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/tools/bundle-bug-finder/_prelude.js
3557 views
1
/* definitions which exist in Deno's global scope and are ok for us to ignore */
2
/*global Deno, globalThis, console, Uint8Array, URL, ArrayBuffer, setTimeout, clearTimeout, Promise, Symbol, TextEncoder, addEventListener, removeEventListener, Map, window, self, global, TransformStream, AggregateError, ReadableStream, WritableStream, TextDecoder, Set, Int32Array, performance, Response, WebAssembly, atob, EventTarget, DOMException, localStorage, fetch, FormData, btoa, Buffer, Headers, WebSocket, File, Blob, Request, CompressionStream, URLSearchParams, AbortController, Atomics, SharedArrayBuffer, setInterval, clearInterval, BigInt, crypto, Uint32Array, Uint16Array, Float32Array, Float64Array, Int16Array, Int8Array, DataView, Proxy, Reflect, Intl, FinalizationRegistry, WeakMap, WeakSet */
3
4
// globals that deno-dom is leaking currently and we need to ignore them
5
// tracking on https://github.com/b-fuze/deno-dom/issues/151
6
/*global i, l, result */
7
8
/* deno-dom browser-only codepath: */
9
/*global document, Element, Document, DocumentFragment */
10
11
/* Emscripten prelude: */
12
/* global PATH, noExitRuntime */
13
14
/* commonjs etc globals, guarded by `typeof`, eslint analysis fails here: */
15
/*global define, module */
16
17
/*eslint no-undef: "error"*/
18
19
/* puppeteer globals
20
45454:11 error Definition for rule '@typescript-eslint/ban-ts-comment' was not found @typescript-eslint/ban-ts-comment*/
21
22
/*global NodeFilter, ShadowRoot, Node, IntersectionObserver, Event, DataTransfer, XPathResult, base64Decode */
23
/*global XMLSerializer, predicateQueryHandler, checkWaitForOptions, MutationObserver, requestAnimationFrame, FileReader */
24
/*global name, createIterResult, navigator */
25