summaryrefslogtreecommitdiffstats
path: root/node_modules/cssfilter/lib/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/cssfilter/lib/index.js')
-rw-r--r--node_modules/cssfilter/lib/index.js32
1 files changed, 0 insertions, 32 deletions
diff --git a/node_modules/cssfilter/lib/index.js b/node_modules/cssfilter/lib/index.js
deleted file mode 100644
index 712f55f..0000000
--- a/node_modules/cssfilter/lib/index.js
+++ /dev/null
@@ -1,32 +0,0 @@
-/**
- * cssfilter
- *
- * @author 老雷<leizongmin@gmail.com>
- */
-
-var DEFAULT = require('./default');
-var FilterCSS = require('./css');
-
-
-/**
- * XSS过滤
- *
- * @param {String} css 要过滤的CSS代码
- * @param {Object} options 选项:whiteList, onAttr, onIgnoreAttr
- * @return {String}
- */
-function filterCSS (html, options) {
- var xss = new FilterCSS(options);
- return xss.process(html);
-}
-
-
-// 输出
-exports = module.exports = filterCSS;
-exports.FilterCSS = FilterCSS;
-for (var i in DEFAULT) exports[i] = DEFAULT[i];
-
-// 在浏览器端使用
-if (typeof window !== 'undefined') {
- window.filterCSS = module.exports;
-}