Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

compare-module-exports

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

compare-module-exports - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

2

package.json
{
"name": "compare-module-exports",
"version": "2.0.0",
"version": "2.0.1",
"description": "",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -65,5 +65,10 @@ function generate(libraryName) {

errors = [];
if (matchExports(realExports, mockedExports, realFile, mockFile, options)) {
const exports = matchExports(realExports, mockedExports, realFile, mockFile, options);
if (exports) {
errors = [];
return matchExports(realExports, {default: mockedExports}, realFile, mockFile, options)
if (realExports.default) {
const defaultExport = matchExports(realExports, {default: mockedExports}, realFile, mockFile, options)
return defaultExport ? defaultExport.concat(exports) : false;
}
return exports;
}

@@ -70,0 +75,0 @@ return false;

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