Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
'use strict';
/**
* @param {string} data
* @return {string}
*/
function encode(data) {
return data
.replace(/"/g, "'")
.replace(/%/g, '%25')
.replace(//g, '%3E')
.replace(/&/g, '%26')
.replace(/#/g, '%23')
.replace(/\s+/g, ' ');
}
const decode = decodeURIComponent;
module.exports = { encode, decode };