Files

9 lines
153 B
TypeScript
Raw Permalink Normal View History

2026-03-25 14:14:07 +01:00
declare function sanitize(
input: string,
options?: {
replacement?: string | ((substring: string) => string);
}
): string;
export = sanitize;