Package Exports
- babel-identifiers
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (babel-identifiers) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
babel-identifiers
Classify Babel identifiers
Installation
yarn add babel-identifiersUsage
Identifier nodes fall into one of three categories:
- "binding" -
let binding = ... - "reference" -
reference; - "static" -
a.static
import {getIdentifierKind} from 'babel-identifiers';
getIdentifierKind(path); // "binding" | "reference" | "static"This should work for all identifiers, even those in Flow or TypeScript.