1
0
mirror of https://github.com/thangisme/notes.git synced 2024-11-01 04:27:17 -04:00
notes/node_modules/stylelint-scss/dist/utils/isStandardSyntaxProperty.js

25 lines
462 B
JavaScript
Raw Normal View History

2017-03-09 13:16:08 -05:00
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = function (property) {
// SCSS var (e.g. $var: x), list (e.g. $list: (x)) or map (e.g. $map: (key:value))
if (property[0] === "$") {
return false;
}
// Less var (e.g. @var: x)
if (property[0] === "@") {
return false;
}
// SCSS or Less interpolation
if (/#{.+?}|@{.+?}|\$\(.+?\)/.test(property)) {
return false;
}
return true;
};