Socket
Socket
Sign inDemoInstall

@babel/helper-module-imports

Package Overview
Dependencies
Maintainers
6
Versions
75
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@babel/helper-module-imports - npm Package Compare versions

Comparing version 7.0.0-beta.38 to 7.0.0-beta.39

8

lib/import-builder.js

@@ -56,3 +56,3 @@ "use strict";

statement.specifiers = [t.importNamespaceSpecifier(name)];
this._resultName = t.clone(name);
this._resultName = t.cloneNode(name);
return this;

@@ -67,3 +67,3 @@ };

statement.specifiers = [t.importDefaultSpecifier(name)];
this._resultName = t.clone(name);
this._resultName = t.cloneNode(name);
return this;

@@ -79,3 +79,3 @@ };

statement.specifiers = [t.importSpecifier(name, t.identifier(importName))];
this._resultName = t.clone(name);
this._resultName = t.cloneNode(name);
return this;

@@ -96,3 +96,3 @@ };

this._statements[this._statements.length - 1] = t.variableDeclaration("var", [t.variableDeclarator(name, statement.expression)]);
this._resultName = t.clone(name);
this._resultName = t.cloneNode(name);
return this;

@@ -99,0 +99,0 @@ };

{
"name": "@babel/helper-module-imports",
"version": "7.0.0-beta.38",
"version": "7.0.0-beta.39",
"description": "Babel helper functions for inserting module loads",

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

"dependencies": {
"@babel/types": "7.0.0-beta.38",
"@babel/types": "7.0.0-beta.39",
"lodash": "^4.2.0"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.38"
"@babel/core": "7.0.0-beta.39"
}
}
SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc