11 lines
193 B
JavaScript
11 lines
193 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Check whether a property is a custom one
|
|
* @param {string} property
|
|
* @returns {boolean}
|
|
*/
|
|
module.exports = function(property) {
|
|
return property.startsWith('--');
|
|
};
|