eslint-plugin-unicorn-x
Version:
More than 100 powerful ESLint rules
9 lines (6 loc) • 336 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;