UNPKG

stylelint

Version:

A mighty, modern CSS linter.

11 lines (9 loc) 193 B
'use strict'; /** * Check whether a property is a custom one * @param {string} property * @returns {boolean} */ module.exports = function(property) { return property.startsWith('--'); };