UNPKG

stylelint-wechat-work-css

Version:

Special stylelint rules for `wechat at work` project css

12 lines (10 loc) 234 B
'use strict' /** * Check whether a property is a custom one * * @param {string} property * @return {boolean} If `true`, property is a custom one */ module.exports = function (property) { return property.slice(0, 2) === '--' }