Sha256: 41078c8852117b54b4af9f14e8aa8b35c780bd932657f92143732f9eaf4482ce

Contents?: true

Size: 420 Bytes

Versions: 23

Compression:

Stored size: 420 Bytes

Contents

'use strict';

/**
 * Check whether a combinator is standard
 *
 * @param {import('postcss-selector-parser').Combinator} node postcss-selector-parser node (of type combinator)
 * @return {boolean} If `true`, the combinator is standard
 */
module.exports = function (node) {
	// Ignore reference combinators like `/deep/`
	return node.type === 'combinator' && !node.value.startsWith('/') && !node.value.endsWith('/');
};

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
trusty-cms-4.1.7 node_modules/stylelint/lib/utils/isStandardSyntaxCombinator.js
trusty-cms-4.1.6 node_modules/stylelint/lib/utils/isStandardSyntaxCombinator.js
trusty-cms-4.1.5 node_modules/stylelint/lib/utils/isStandardSyntaxCombinator.js