UNPKG

eslint-plugin-unicorn

Version:
10 lines (7 loc) 287 B
'use strict'; const hasSameRange = require('./has-same-range.js'); const isShorthandExportLocal = node => { const {type, local, exported} = node.parent; return type === 'ExportSpecifier' && hasSameRange(local, exported) && local === node; }; module.exports = isShorthandExportLocal;