eslint-plugin-unicorn
Version:
Various awesome ESLint rules
10 lines (7 loc) • 355 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;