UNPKG

stylelint

Version:

A mighty, modern CSS linter.

12 lines (10 loc) 197 B
'use strict'; /** * Check whether a selector is a custom one * * @param {string} selector * @returns {boolean} */ module.exports = function(selector) { return selector.startsWith(':--'); };