mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 03:07:28 -04:00
25 lines
462 B
JavaScript
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;
|
|
}; |