thingsboard/ui/node_modules/stylelint/lib/utils/isCustomPropertySet.js

19 lines
429 B
JavaScript
Raw Normal View History

2020-05-19 11:43:42 +03:00
'use strict';
const _ = require('lodash');
const hasBlock = require('../utils/hasBlock');
/**
* Check whether a Node is a custom property set
*
* @param {import('postcss').Rule} node
* @returns {boolean}
*/
module.exports = function(node) {
const selector = _.get(node, 'raws.selector.raw', node.selector);
return (
node.type === 'rule' && hasBlock(node) && selector.startsWith('--') && selector.endsWith(':')
);
};