epiphany/node_modules/stylelint/lib/utils/isCustomProperty.js
2023-12-09 22:48:07 -08:00

10 lines
210 B
JavaScript

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