1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/@babel/traverse/README.md

34 lines
709 B
Markdown
Raw Normal View History

2023-12-18 13:12:25 +08:00
# @babel/traverse
2024-01-16 21:26:16 +08:00
> @babel/traverse maintains the overall tree state, and is responsible for replacing, removing, and adding nodes.
2023-12-18 13:12:25 +08:00
## Install
```sh
2024-01-16 21:26:16 +08:00
$ npm install --save @babel/traverse
2023-12-18 13:12:25 +08:00
```
2024-01-16 21:26:16 +08:00
## Usage
2023-12-18 13:12:25 +08:00
2024-01-16 21:26:16 +08:00
We can use it alongside Babylon to traverse and update nodes:
```js
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";
}
}
});
2023-12-18 13:12:25 +08:00
```
2024-01-16 21:26:16 +08:00
[:book: **Read the full docs here**](https://github.com/thejameskyle/babel-handbook/blob/master/translations/en/plugin-handbook.md#babel-traverse)