Advertisement
Guest User

g

a guest
Oct 19th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. function clean(text) {
  2. if (typeof(text) === "string")
  3. return text.replace(/`/g, "`" + String.fromCharCode(8203)).replace(/@/g, "@" + String.fromCharCode(8203));
  4. else
  5. return text;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement