Socket
Socket
Sign inDemoInstall

amdextract

Package Overview
Dependencies
2
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.1.11 to 2.1.12

2

package.json
{
"name": "amdextract",
"version": "2.1.11",
"version": "2.1.12",
"description": "Uses AST to extract AMD modules, their parts and an optimized output without unused dependencies while keeping the original format.",

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

@@ -10,8 +10,8 @@ # amdextract [![Build Status](https://travis-ci.org/mehdishojaei/amdextract.png)](https://travis-ci.org/mehdishojaei/amdextract)

define('module1', ['p1', 'p2'], function (a, b) {
/**
* b is not used in this scope.
*/
return (function(b) {
return b;
})(a);
/**
* b is not used in this scope.
*/
return (function(b) {
return b;
})(a);
});

@@ -51,8 +51,8 @@

define('module1', ['p1'], function (a) {
/**
* b is not used in this scope.
*/
return (function(b) {
return b;
})(a);
/**
* b is not used in this scope.
*/
return (function(b) {
return b;
})(a);
});

@@ -132,2 +132,3 @@

## Release History
* 2015-12-26   v2.1.12   Fixed indentation of samples in README.md.
* 2015-12-26   v2.1.11   Fixed a bug in "optimizedContent" property.

@@ -134,0 +135,0 @@ * 2015-07-25   v2.1.10   Update travis CI.

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc