CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
browser.ts12 linesDownload Raw Back to presets
1import { FetchInterceptor } from '../interceptors/fetch'2import { XMLHttpRequestInterceptor } from '../interceptors/XMLHttpRequest'3 4/**5 * The default preset provisions the interception of requests6 * regardless of their type (fetch/XMLHttpRequest).7 */8export default [9  new FetchInterceptor(),10  new XMLHttpRequestInterceptor(),11] as const12 
basant307/AI_Governance_Project · CoolFace