UNPKG

eslint-plugin-unicorn-x

Version:
13 lines (10 loc) 279 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;