Updated the files.
This commit is contained in:
parent
1553e6b971
commit
753967d4f5
23418 changed files with 3784666 additions and 0 deletions
23
my-app/node_modules/html-escaper/test/index.js
generated
vendored
Executable file
23
my-app/node_modules/html-escaper/test/index.js
generated
vendored
Executable file
|
@ -0,0 +1,23 @@
|
|||
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'
|
||||
);
|
1
my-app/node_modules/html-escaper/test/package.json
generated
vendored
Executable file
1
my-app/node_modules/html-escaper/test/package.json
generated
vendored
Executable file
|
@ -0,0 +1 @@
|
|||
{"type":"commonjs"}
|
Loading…
Add table
Add a link
Reference in a new issue