clash.ts 285 B

1234567
  1. const unsupported = Symbol('unsupported');
  2. // https://dreamacro.github.io/clash/configuration/rules.html
  3. export const PROCESSOR: Record<string, ((raw: string, type: string, value: string) => string) | typeof unsupported> = {
  4. 'URL-REGEX': unsupported,
  5. 'USER-AGENT': unsupported
  6. };