Socket
Socket
Sign inDemoInstall

@babel/helper-simple-access

Package Overview
Dependencies
16
Maintainers
5
Versions
71
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 7.0.0-beta.49 to 7.0.0-beta.50

6

package.json
{
"name": "@babel/helper-simple-access",
"version": "7.0.0-beta.49",
"version": "7.0.0-beta.50",
"description": "Babel helper for ensuring that access to a given value is performed through simple accesses",

@@ -11,6 +11,6 @@ "author": "Logan Smyth <loganfsmyth@gmail.com>",

"dependencies": {
"@babel/template": "7.0.0-beta.49",
"@babel/types": "7.0.0-beta.49",
"@babel/template": "7.0.0-beta.50",
"@babel/types": "7.0.0-beta.50",
"lodash": "^4.17.5"
}
}

@@ -1,26 +0,19 @@

# @babel/helper-simple-assignment
# @babel/helper-simple-access
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
> Babel helper for ensuring that access to a given value is performed through simple accesses
```
i += 1
--i;
```
See our website [@babel/helper-simple-access](https://new.babeljs.io/docs/en/next/babel-helper-simple-access.html) for more information.
It is difficult to work with.
## Install
This helper can handle converting these to simple access patterns of standard
assignment. This plugin does _not_ handle
Using npm:
```sh
npm install --save @babel/helper-simple-access
```
{ a } = foo;
```
so assignment to patterns still needs to be handled when you are processing
updates to values.
or using yarn:
## Usage
TODO
```sh
yarn add --save @babel/helper-simple-access
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc