项目原始demo,不改动
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。
 
 
 
 
wa1k3r 7502571d8f upload all 4年前
..
lib [Version] V.3.8 4年前
node_modules upload all 4年前
README.md [Version] V.3.8 4年前
package.json [Version] V.3.8 4年前

README.md

@babel/traverse

@babel/traverse maintains the overall tree state, and is responsible for replacing, removing, and adding nodes.

Install

$ npm install --save @babel/traverse

Usage

We can use it alongside Babylon to traverse and update nodes:

import * as babylon from "babylon";
import traverse from "@babel/traverse";

const code = `function square(n) {
  return n * n;
}`;

const ast = babylon.parse(code);

traverse(ast, {
  enter(path) {
    if (path.isIdentifier({ name: "n" })) {
      path.node.name = "x";
    }
  }
});

:book: Read the full docs here