postcss-selector-parser
Advanced tools
Comparing version
@@ -471,2 +471,7 @@ # API Documentation | ||
### `root.trailingComma` | ||
This will be set to `true` if the input has a trailing comma, in order to | ||
support parsing of legacy CSS hacks. | ||
## Selector nodes | ||
@@ -473,0 +478,0 @@ |
@@ -0,1 +1,5 @@ | ||
# 1.1.1 | ||
* Fixes a crash when a backslash ended a selector string. | ||
# 1.1.0 | ||
@@ -2,0 +6,0 @@ |
@@ -282,3 +282,3 @@ 'use strict'; | ||
var next = this.nextToken; | ||
if (next[0] === 'space') { | ||
if (next && next[0] === 'space') { | ||
word += next[1]; | ||
@@ -285,0 +285,0 @@ this.position++; |
{ | ||
"name": "postcss-selector-parser", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"devDependencies": { | ||
@@ -5,0 +5,0 @@ "babel": "^5.4.3", |
81215
0.26%