* refactor: replace esutils.keywords.isIdentifierNameES6 by helper-validator-identifier * refactor: replace esutils isReservedWordES6 by isKeyword || isReservedWord * address review comments * chore: specify both “main” and “exports” * build helper-validator-identifier before babel-types
13 lines
237 B
JavaScript
13 lines
237 B
JavaScript
export {
|
|
isIdentifierName,
|
|
isIdentifierChar,
|
|
isIdentifierStart,
|
|
} from "./identifier";
|
|
export {
|
|
isReservedWord,
|
|
isStrictBindOnlyReservedWord,
|
|
isStrictBindReservedWord,
|
|
isStrictReservedWord,
|
|
isKeyword,
|
|
} from "./keyword";
|