%PDF- %PDF-
| Direktori : /home/vacivi36/.trash/vacivitta/node_modules/html-escaper/test/ |
| Current File : /home/vacivi36/.trash/vacivitta/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'
);