1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-29 03:55:35 +00:00
notes/node_modules/stylelint-scss/dist/utils/isStandardSyntaxProperty.js
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00

25 lines
462 B
JavaScript

"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;
};