publish: v1.0.5

This commit is contained in:
Zongmin Lei
2019-03-20 14:09:01 +08:00
parent a605558986
commit 75c7868e3e
3 changed files with 3 additions and 2 deletions

1
dist/xss.js vendored
View File

@@ -439,6 +439,7 @@ function filterXSS(html, options) {
}
exports = module.exports = filterXSS;
exports.filterXSS = filterXSS;
exports.FilterXSS = FilterXSS;
for (var i in DEFAULT) exports[i] = DEFAULT[i];
for (var i in parser) exports[i] = parser[i];

2
dist/xss.min.js vendored

File diff suppressed because one or more lines are too long

View File

@@ -2,7 +2,7 @@
"name": "xss",
"main": "./lib/index.js",
"typings": "./typings/xss.d.ts",
"version": "1.0.4",
"version": "1.0.5",
"description": "Sanitize untrusted HTML (to prevent XSS) with a configuration specified by a Whitelist",
"author": "Zongmin Lei <leizongmin@gmail.com> (http://ucdok.com)",
"repository": {