UNPKG

eslint-plugin-unicorn

Version:
9 lines (6 loc) 334 B
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;