mirror of
https://github.com/DerTyp7/notes-react.git
synced 2025-10-29 20:42:09 +01:00
13 lines
209 B
JavaScript
13 lines
209 B
JavaScript
function secure(text){
|
|
text = text.replace(/'/g, "\\u0027");
|
|
return text;
|
|
}
|
|
|
|
function decode(text){
|
|
text = text.replace(/\\u0027/g, "'");
|
|
return text;
|
|
}
|
|
|
|
module.exports = {
|
|
secure, decode
|
|
} |