mirror of
https://github.com/SukkaW/Surge.git
synced 2025-12-13 01:30:37 +08:00
8 lines
285 B
TypeScript
8 lines
285 B
TypeScript
const unsupported = Symbol('unsupported');
|
|
|
|
// https://dreamacro.github.io/clash/configuration/rules.html
|
|
export const PROCESSOR: Record<string, ((raw: string, type: string, value: string) => string) | typeof unsupported> = {
|
|
'URL-REGEX': unsupported,
|
|
'USER-AGENT': unsupported
|
|
};
|