eslint-plugin-unicorn
Version:
More than 100 powerful ESLint rules
9 lines (6 loc) • 334 B
JavaScript
import isShorthandPropertyValue from './is-shorthand-property-value.js';
const isShorthandPropertyAssignmentPatternLeft = identifier =>
identifier.parent.type === 'AssignmentPattern'
&& identifier.parent.left === identifier
&& isShorthandPropertyValue(identifier.parent);
export default isShorthandPropertyAssignmentPatternLeft;