Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cssom-papandreou

Package Overview
Dependencies
Maintainers
2
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cssom-papandreou - npm Package Compare versions

Comparing version 0.2.4-patch1 to 0.2.4-patch2

build/CSSOM.js

22

lib/parse.js

@@ -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"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc