blob: fcc6cb05f7a9d9f2aceca1227c30c1ee8e1ff1f8 [file] [log] [blame]
'use strict';
/**
* Check whether a property is a custom one
* @param {string} property
* @returns {boolean}
*/
module.exports = function (property) {
return property.startsWith('--');
};