UNPKG

120 BJavaScriptView Raw
1const char = "_";
2
3function decode(str) {
4 return str.replace(new RegExp(`${char}@`, "g"), "@");
5}
6
7export { decode };