This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/node_modules/stylelint/lib/utils/isCustomPropertySet.js
2020-11-01 22:46:04 +00:00

19 lines
430 B
JavaScript

'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(':')
);
};