A Babel helper package (currently at v7.0.0-beta.3) that transforms complex assignment patterns (e.g., `i += 1`, `--i`) into simple assignments for easier AST manipulation. It is part of the Babel ecosystem, primarily used internally by Babel plugins. Unlike general-purpose AST utilities, it specifically handles converting compound assignments and unary mutations to straightforward `i = i + 1` style assignments. This package is in beta and likely deprecated in favor of modern Babel 8 helpers.
npm install babel-helper-simple-accessVerified import paths — ran on the pinned version, not inferred.
Demonstrates using simpleAccess to convert a compound assignment into a simple assignment.
Migrate to @babel/helper-simple-access if available, or use Babel 8 plugins.
Manually handle destructuring or use a different transformation pass.
Pin to a specific version and test thoroughly.
Use `import simpleAccess from 'babel-helper-simple-access'` (default import).
Run `npm install babel-helper-simple-access@7.0.0-beta.3` and ensure it's in package.json.
Install @babel/types: `npm install @babel/types` and import it.
No dependency data recorded yet.