cssom-papandreou
Advanced tools
Comparing version 0.2.4-patch1 to 0.2.4-patch2
@@ -86,6 +86,9 @@ //.CommonJS | ||
case '"': | ||
index = token.indexOf('"', i + 1) + 1; | ||
if (!index) { | ||
parseError('Unmatched "'); | ||
} | ||
index = i + 1; | ||
do { | ||
index = token.indexOf('"', index) + 1; | ||
if (!index) { | ||
parseError('Unmatched "'); | ||
} | ||
} while (token[index - 2] === '\\') | ||
buffer += token.slice(i, index); | ||
@@ -104,6 +107,9 @@ i = index - 1; | ||
case "'": | ||
index = token.indexOf("'", i + 1) + 1; | ||
if (!index) { | ||
parseError("Unmatched '"); | ||
} | ||
index = i + 1; | ||
do { | ||
index = token.indexOf("'", index) + 1; | ||
if (!index) { | ||
parseError("Unmatched '"); | ||
} | ||
} while (token[index - 2] === '\\') | ||
buffer += token.slice(i, index); | ||
@@ -110,0 +116,0 @@ i = index - 1; |
{ | ||
"name": "cssom-papandreou", | ||
"description": "CSS Object Model implementation and CSS parser (fork that hacks in support for multiple occurrences of the same CSS property in a rule)", | ||
"keywords": ["CSS", "CSSOM", "parser", "styleSheet"], | ||
"version": "0.2.4-patch1", | ||
"homepage": "https://github.com/NV/CSSOM", | ||
"author": "Nikita Vasilyev <me@elv1s.ru>", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/papandreou/CSSOM.git" | ||
}, | ||
"directories": { | ||
"lib": "./lib" | ||
}, | ||
"main": "./lib/index.js", | ||
"engines": { | ||
"node": ">=0.2.0" | ||
}, | ||
"devDependencies": { | ||
"jake": "0.2.x" | ||
}, | ||
"licenses": [ | ||
{ | ||
"type": "MIT", | ||
"url": "http://creativecommons.org/licenses/MIT/" | ||
} | ||
], | ||
"scripts": { | ||
"prepublish": "jake lib/index.js" | ||
} | ||
"name": "cssom-papandreou", | ||
"description": "CSS Object Model implementation and CSS parser (fork that hacks in support for multiple occurrences of the same CSS property in a rule)", | ||
"keywords": [ | ||
"CSS", | ||
"CSSOM", | ||
"parser", | ||
"styleSheet" | ||
], | ||
"version": "0.2.4-patch2", | ||
"homepage": "https://github.com/NV/CSSOM", | ||
"author": "Nikita Vasilyev <me@elv1s.ru>", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/papandreou/CSSOM.git" | ||
}, | ||
"directories": { | ||
"lib": "./lib" | ||
}, | ||
"main": "./lib/index.js", | ||
"engines": { | ||
"node": ">=0.2.0" | ||
}, | ||
"devDependencies": { | ||
"jake": "0.2.x" | ||
}, | ||
"licenses": [ | ||
{ | ||
"type": "MIT", | ||
"url": "http://creativecommons.org/licenses/MIT/" | ||
} | ||
], | ||
"scripts": { | ||
"prepublish": "jake lib/index.js" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
Found 1 instance in 1 package
61172
19
2127
0
35
0