UNPKG
monk-import-export
Version:
latest (0.0.0)
0.0.0
Simple import & export sorting ESLint plugin
monk-import-export
/
src
/
rules
/
exports
/
utils
/
getSpecifiers.ts
5 lines
(4 loc)
•
141 B
text/typescript
View Raw
1
2
3
4
5
// `export * from "a"` does not have `.specifiers`.
export
function
getSpecifiers
(exportNode: any)
{
return
exportNode.specifiers || []; }