4 lines
87 B
JavaScript
4 lines
87 B
JavaScript
module.exports = function isDollarVariable(property) {
|
|
return property[0] === '$';
|
|
};
|