2017-03-09 13:16:08 -05:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
|
|
|
value: true
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
exports.default = function (selector) {
|
|
|
|
|
|
|
|
|
|
// SCSS or Less interpolation
|
|
|
|
|
if (/#{.+?}|@{.+?}|\$\(.+?\)/.test(selector)) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
};
|