stylus icon indicating copy to clipboard operation
stylus copied to clipboard

Normalizer fails when selector.val is undefined

Open amansx opened this issue 7 years ago • 1 comments

Line 247: normalizer.js

   // normalize interpolated selectors with comma
  group.nodes.forEach(function(selector, i){
    if (!~selector.val.indexOf(',')) return;
    if (~selector.val.indexOf('\\,')) {
      selector.val = selector.val.replace(/\\,/g, ',');
      return;
    }

amansx avatar Sep 15 '17 21:09 amansx

PR welcome, folks.

iChenLei avatar Aug 22 '21 07:08 iChenLei