UNPKG

fusion-cli

Version:
11 lines (10 loc) 211 B
// @noflow module.exports = () => ({ visitor: { StringLiteral(path) { if (path.node.value === 'helloworld') { path.node.value = 'transformed_helloworld_custom_babel'; } }, }, });