Skip to main content

@babel/helper-simple-access

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