File: //proc/thread-self/root/home/arjun/projects/good-life-be/node_modules/validator/es/lib/unescape.js
import assertString from './util/assertString';
export default function unescape(str) {
assertString(str);
return str.replace(/"/g, '"').replace(/'/g, "'").replace(/</g, '<').replace(/>/g, '>').replace(///g, '/').replace(/\/g, '\\').replace(/`/g, '`').replace(/&/g, '&');
// & replacement has to be the last one to prevent
// bugs with intermediate strings containing escape sequences
// See: https://github.com/validatorjs/validator.js/issues/1827
}