'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;