UNPKG

eslint-plugin-import-x

Version:
15 lines 437 B
import { TSESTree } from '@typescript-eslint/utils'; export const getValue = (node) => { switch (node.type) { case TSESTree.AST_NODE_TYPES.Identifier: { return node.name; } case TSESTree.AST_NODE_TYPES.Literal: { return node.value; } default: { throw new Error(`Unsupported node type: ${node.type}`); } } }; //# sourceMappingURL=get-value.js.map