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 1.1.0 to 2.0.0

2

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

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

function generate(libraryName) {
let hasError = false;
let errors = [];
const pushError = (err) => errors.push(err);

@@ -8,3 +10,3 @@ function testFunction(a, b, file, name) {

if (a.toString().indexOf('_could_be_any_') < 0) {
console.error(name + ': in' + file + '\n\t\t' + a.toString() + '\n\tdoes not match\n\t\t' + b.toString());
pushError(name + ': in' + file + '\n\t\t' + a.toString() + '\n\tdoes not match\n\t\t' + b.toString());
throw new Error(libraryName + ': function argument mismatch: ' + file + ': ' + name);

@@ -36,3 +38,3 @@ }

if (typeOfA !== typeOfB) {
console.error(
pushError(
libraryName + ': mock ' + mockFile + ' exports does not match a real file.' +

@@ -47,3 +49,3 @@ ' Expected ' + typeOfB + ', got ' + typeOfA + ''

} catch (e) {
console.error(e.message, '\n');
pushError(e.message);
hasError = true;

@@ -56,3 +58,3 @@ }

} catch (e) {
console.error(e.message, '\n');
pushError(e.message);
hasError = true;

@@ -62,8 +64,10 @@ }

}
return hasError;
return hasError ? errors : false;
}
function tryMatchExports(realExports, mockedExports, realFile, mockFile, options = {}) {
if(matchExports(realExports, mockedExports, realFile, mockFile, options)){
return matchExports(realExports, { default: mockedExports }, realFile, mockFile, options)
errors = [];
if (matchExports(realExports, mockedExports, realFile, mockFile, options)) {
errors = [];
return matchExports(realExports, {default: mockedExports}, realFile, mockFile, options)
}

@@ -70,0 +74,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