UNPKG

eslint-plugin-unicorn-x

Version:
7 lines (5 loc) 169 B
const isSameIdentifier = (nodeA, nodeB) => nodeA.type === 'Identifier' && nodeB.type === 'Identifier' && nodeA.name === nodeB.name; export default isSameIdentifier;