UNPKG

238 BJavaScriptView Raw
1/**
2 * Check whether a property is a custom one
3 *
4 * @param {string} property
5 * @return {boolean} If `true`, property is a custom one
6 */
7
8module.exports = function isCustomProperty(property) {
9 return property.slice(0, 2) === '--';
10};