is-shorthand-property-value.js 221 B

12345678
  1. 'use strict';
  2. const isShorthandPropertyValue = identifier =>
  3. identifier.parent.type === 'Property'
  4. && identifier.parent.shorthand
  5. && identifier === identifier.parent.value;
  6. module.exports = isShorthandPropertyValue;