isDollarVariable.js 87 B

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