babel-helper-simple-access

Babel helper for ensuring that access to a given value is performed through simple accesses

MIT 1 个版本
安装
npm install babel-helper-simple-access
yarn add babel-helper-simple-access
pnpm add babel-helper-simple-access
bun add babel-helper-simple-access
README

babel-helper-simple-assignment

There are many cases where it is hard to perform transformations because a piece of code is using complex structures. Say you want to rewrite all accesses to a given variable, and there are cases like

i += 1
--i;

It is difficult to work with.

This helper can handle converting these to simple access patterns of standard assignment. This plugin does not handle

{ a } = foo;

so assignment to patterns still needs to be handled when you are processing updates to values.

Usage

TODO

版本列表
7.0.0-beta.3 2017-10-15