UNPKG

eslint-plugin-unicorn

Version:
9 lines (6 loc) 266 B
import hasSameRange from './has-same-range.js'; const isShorthandExportLocal = node => { const {type, local, exported} = node.parent; return type === 'ExportSpecifier' && hasSameRange(local, exported) && local === node; }; export default isShorthandExportLocal;