New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

babel-plugin-transform-es2015-block-scoping

Package Overview
Dependencies
Maintainers
4
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-transform-es2015-block-scoping - npm Package Compare versions

Comparing version

to
7.0.0-alpha.17

6

lib/index.js

@@ -105,4 +105,6 @@ "use strict";

function convertBlockScopedToVar(path, node, parent, scope) {
var moveBindingsToParent = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;
function convertBlockScopedToVar(path, node, parent, scope, moveBindingsToParent) {
if (moveBindingsToParent === void 0) {
moveBindingsToParent = false;
}

@@ -109,0 +111,0 @@ if (!node) {

{
"name": "babel-plugin-transform-es2015-block-scoping",
"version": "7.0.0-alpha.16",
"version": "7.0.0-alpha.17",
"description": "Compile ES2015 block scoping (const and let) to ES5",

@@ -9,5 +9,5 @@ "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-block-scoping",

"dependencies": {
"babel-template": "7.0.0-alpha.16",
"babel-traverse": "7.0.0-alpha.16",
"babel-types": "7.0.0-alpha.16",
"babel-template": "7.0.0-alpha.17",
"babel-traverse": "7.0.0-alpha.17",
"babel-types": "7.0.0-alpha.17",
"lodash": "^4.2.0"

@@ -19,4 +19,4 @@ },

"devDependencies": {
"babel-helper-plugin-test-runner": "7.0.0-alpha.16"
"babel-helper-plugin-test-runner": "7.0.0-alpha.17"
}
}