mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-18 03:55:32 +00:00
9 lines
192 B
JavaScript
9 lines
192 B
JavaScript
/**
|
|
* Check whether a property is a custom one
|
|
* @param {string} property
|
|
* @returns {boolean}
|
|
*/
|
|
export default function isCustomProperty(property) {
|
|
return property.startsWith('--');
|
|
}
|