UNPKG

@jsverse/transloco-keys-manager

Version:

Extract translatable keys from projects that uses Transloco

7 lines 337 B
import { tsquery } from '@phenomnomnominal/tsquery'; import { buildKeysFromASTNodes } from './build-keys-from-ast-nodes.js'; export function pureFunctionExtractor(ast) { const fns = tsquery(ast, `CallExpression Identifier[text=translate]`); return buildKeysFromASTNodes(fns); } //# sourceMappingURL=pure-function.extractor.js.map