backend v4 half
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user