项目原始demo,不改动
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
To repozytorium jest zarchiwizowane. Możesz wyświetlać pliki i je sklonować, ale nie możesz do niego przepychać zmian lub otwierać zgłoszeń/Pull Requestów.
 
 
 
 
wa1k3r 7502571d8f upload all 4 lat temu
..
lib [Version] V.3.8 4 lat temu
node_modules upload all 4 lat temu
README.md [Version] V.3.8 4 lat temu
package.json [Version] V.3.8 4 lat temu

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