2020-05-19 11:43:42 +03:00

4 lines
97 B
JavaScript

module.exports = function isCustomProperty(property) {
return property.slice(0, 2) === '--';
};