2020-05-19 11:43:42 +03:00

4 lines
87 B
JavaScript

module.exports = function isDollarVariable(property) {
return property[0] === '$';
};