eslint-plugin-unicorn
Version:
Various awesome ESLint rules
11 lines (7 loc) • 356 B
JavaScript
;
const isShorthandPropertyValue = require('./is-shorthand-property-value.js');
const isShorthandPropertyAssignmentPatternLeft = identifier =>
identifier.parent.type === 'AssignmentPattern'
&& identifier.parent.left === identifier
&& isShorthandPropertyValue(identifier.parent);
module.exports = isShorthandPropertyAssignmentPatternLeft;