New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cssfilter

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cssfilter - npm Package Compare versions

Comparing version

to
0.0.5

build

2

lib/css.js

@@ -57,3 +57,3 @@ /**

else if (typeof check === 'function') isWhite = check(value);
else if (check instanceof RegExp) isWhite = check.test(val);
else if (check instanceof RegExp) isWhite = check.test(value);
if (isWhite !== true) isWhite = false;

@@ -60,0 +60,0 @@

{
"name": "cssfilter",
"version": "0.0.4",
"version": "0.0.5",
"description": "Sanitize untrusted CSS with a configuration specified by a Whitelist. 根据白名单过滤CSS",
"main": "index.js",
"main": "lib/index.js",
"scripts": {

@@ -10,3 +10,3 @@ "blanket": {

},
"test": "./node_modules/mocha/bin/mocha --require blanket -R html-cov > coverage.html -t 5000"
"test": "mocha --require blanket -R html-cov > coverage.html -t 5000 && mocha -t 5000 && testling -x open"
},

@@ -44,4 +44,18 @@ "repository": {

"should": "^6.0.1",
"testling": "^1.7.1",
"uglify-js": "^2.4.20"
},
"testling": {
"preprocess": "./build",
"harness": "mocha-bdd",
"files": "test/*.js",
"browsers": [
"ie/6..latest",
"firefox/latest",
"chrome/latest",
"safari/5..latest",
"opera/11",
"opera/next"
]
}
}

@@ -0,1 +1,6 @@

[![NPM version](https://badge.fury.io/js/cssfilter.png)](http://badge.fury.io/js/xss)
[![Build Status](https://secure.travis-ci.org/leizongmin/js-css-filter.png?branch=master)](http://travis-ci.org/leizongmin/js-css-filter)
[![Dependencies Status](https://david-dm.org/leizongmin/js-css-filter.png)](https://david-dm.org/leizongmin/js-css-filter)
[![testling badge](https://ci.testling.com/leizongmin/js-css-filter.png)](https://ci.testling.com/leizongmin/js-css-filter)
# cssfilter

@@ -33,3 +38,3 @@ Sanitize untrusted CSS with a configuration specified by a Whitelist. 根据白名单过滤CSS

},
d: false // 除以上三张外,所有值均表示不允许
d: false // 除以上三个以外,所有值均表示不允许
},

@@ -53,3 +58,4 @@ // 当匹配到一个在白名单中的属性时

// then apply mycss.process()
html = mycss.process('position:fixed; width:100px; height:100px; background:#aaa;');
css = mycss.process('position:fixed; width:100px; height:100px; background:#aaa;');
console.log(css);
```

@@ -56,0 +62,0 @@

Sorry, the diff of this file is not supported yet