Skip to content

Commit

Permalink
Fix 80 columns line
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Apr 28, 2018
1 parent 5815270 commit f2954cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/processor.js
Original file line number Diff line number Diff line change
Expand Up @@ -346,8 +346,8 @@ class Processor {
}

if (node.parent) {
const prev = node.prev();
if (prev && prev.type === 'comment' && IGNORE_NEXT.test(prev.text)) {
const p = node.prev();
if (p && p.type === 'comment' && IGNORE_NEXT.test(p.text)) {
node._autoprefixerDisabled = true;
node._autoprefixerSelfDisabled = true;
return true;
Expand Down

0 comments on commit f2954cf

Please sign in to comment.