Socket
Socket
Sign inDemoInstall

@babel/helper-module-transforms

Package Overview
Dependencies
Maintainers
4
Versions
119
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

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

Comparing version 7.24.7 to 7.24.8

4

lib/lazy-modules.js

@@ -15,6 +15,6 @@ "use strict";

if (lazy === true) {
return /\./.test(source) ? null : "lazy";
return source.includes(".") ? null : "lazy";
}
if (Array.isArray(lazy)) {
return lazy.indexOf(source) === -1 ? null : "lazy";
return !lazy.includes(source) ? null : "lazy";
}

@@ -21,0 +21,0 @@ if (typeof lazy === "function") {

{
"name": "@babel/helper-module-transforms",
"version": "7.24.7",
"version": "7.24.8",
"description": "Babel helper functions for implementing ES6 module transformations",

@@ -25,3 +25,3 @@ "author": "The Babel Team (https://babel.dev/team)",

"devDependencies": {
"@babel/core": "^7.24.7"
"@babel/core": "^7.24.8"
},

@@ -28,0 +28,0 @@ "peerDependencies": {

Sorry, the diff of this file is not supported yet

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