UNPKG

194 BJavaScriptView Raw
1'use strict';
2
3/**
4 * Check whether a property is a custom one
5 * @param {string} property
6 * @returns {boolean}
7 */
8module.exports = function (property) {
9 return property.startsWith('--');
10};