mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-18 16:02:57 +00:00
11 lines
233 B
JavaScript
11 lines
233 B
JavaScript
/**
|
|
* Check whether a property is a $-variable
|
|
*
|
|
* @param {string} property
|
|
* @return {boolean} If `true`, property is a $-variable
|
|
*/
|
|
|
|
module.exports = function isDollarVariable(property) {
|
|
return property.startsWith('$');
|
|
};
|