[RFC] Node.prototype.wrap
未关闭
enhancement
- 主要语言
- TypeScript
- 星标
- 16
- 派生
- 1
- PR 合并指标
- 30 天内没有已合并 PR
描述
```js
node.wrap('try {\n', '\n}')
// identical to:
node.before('try {\n')
node.after('\n}')
```
You can wrap the node with anything, but the main use cases are blocks and call expressions.
Do we have a separate method for "block wrapping" that indents the wrapped node and implicitly adds the newline characters seen above? Or maybe passing `true` as the third argument can do that?
```js
node.wrap('try {', '}', true)
// or
node.bwrap('try {', '}')
```
Not a big fan of the name `bwrap` though.
贡献指南
这个仓库没有索引到贡献指南
评估
这个 Issue 还没有评估数据。