UNPKG

eslint-plugin-unicorn

Version:
11 lines (7 loc) 356 B
'use strict'; 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;