mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
12 lines
206 B
JavaScript
12 lines
206 B
JavaScript
module.exports = function () {
|
|
return {
|
|
visitor: {
|
|
StringLiteral: function (path) {
|
|
if (path.node.value === "OYEZ") {
|
|
path.node.value = "ASDF";
|
|
}
|
|
}
|
|
}
|
|
};
|
|
};
|