isDollarVariable.js 233 B

12345678910
  1. /**
  2. * Check whether a property is a $-variable
  3. *
  4. * @param {string} property
  5. * @return {boolean} If `true`, property is a $-variable
  6. */
  7. module.exports = function isDollarVariable(property) {
  8. return property.startsWith('$');
  9. };