CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
node.ts14 linesDownload Raw Back to presets
1import { ClientRequestInterceptor } from '../interceptors/ClientRequest'2import { XMLHttpRequestInterceptor } from '../interceptors/XMLHttpRequest'3import { FetchInterceptor } from '../interceptors/fetch'4 5/**6 * The default preset provisions the interception of requests7 * regardless of their type (http/https/XMLHttpRequest).8 */9export default [10  new ClientRequestInterceptor(),11  new XMLHttpRequestInterceptor(),12  new FetchInterceptor(),13] as const14 
basant307/AI_Governance_Project · CoolFace