UNPKG

babel-plugin-mini

Version:
17 lines (15 loc) 302 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = function () { return { visitor: { StringLiteral: function StringLiteral(path) { if (path.node.value === 'Hello') { path.node.value = 'World'; } } } }; };