UNPKG

eslint-plugin-unicorn

Version:
6 lines (4 loc) 168 B
const isSameIdentifier = (nodeA, nodeB) => nodeA.type === 'Identifier' && nodeB.type === 'Identifier' && nodeA.name === nodeB.name; export default isSameIdentifier;