Sha256: c21ec98b02a23cc50d169eb4fd0ebade3dcd719ca92a579ec8d961a61efa6784
Contents?: true
Size: 388 Bytes
Versions: 24
Compression:
Stored size: 388 Bytes
Contents
module.exports = function isStandardSyntaxProperty(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; };
Version data entries
24 entries across 24 versions & 1 rubygems