mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
4 lines
161 B
TypeScript
4 lines
161 B
TypeScript
export function escapeForGIFT(link: string): string {
|
|
const specialChars = /[{}#~=<>\:]/g;
|
|
return link.replace(specialChars, (match) => `\\${match}`);
|
|
}
|