this repo has no description
at v1.3.9 269 B view raw
1const cors: string[] = []; 2const blocked: string[] = []; 3 4export function registerCors(url: string) { 5 cors.push(url); 6} 7 8export function registerBlocked(url: string) { 9 blocked.push(url); 10} 11 12export function getDynamicCors() { 13 return { 14 cors, 15 blocked 16 }; 17}