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