Initial commit
This commit is contained in:
8
node_modules/validator/es/lib/unescape.js
generated
vendored
Normal file
8
node_modules/validator/es/lib/unescape.js
generated
vendored
Normal file
@@ -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