mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-20 00:43:04 +00:00
11 lines
210 B
JavaScript
11 lines
210 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Check whether a property is a custom one
|
|
* @param {string} property
|
|
* @returns {boolean}
|
|
*/
|
|
module.exports = function isCustomProperty(property) {
|
|
return property.startsWith('--');
|
|
};
|