| Current Path : /proc/thread-self/root/home/deltalab/PMS/logistic-backend/node_modules/html-escaper/test/ |
| Current File : //proc/thread-self/root/home/deltalab/PMS/logistic-backend/node_modules/html-escaper/test/index.js |
delete Object.freeze;
var html = require('../cjs');
console.assert(
html.escape('&<>\'"') === '&<>'"',
'correct escape'
);
console.assert(
html.escape('<>\'"&') === '<>'"&',
'correct inverted escape'
);
console.assert(
'&<>\'"' === html.unescape('&<>'"'),
'correct unescape'
);
console.assert(
'<>\'"&' === html.unescape('<>'"&'),
'correct inverted unescape'
);