New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

x-ray

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

x-ray - npm Package Compare versions

Comparing version 2.0.1 to 2.0.2

6

History.md
2.0.2 / 2015-07-04
==================
* handle the empty result set case
* add test dependency
2.0.1 / 2015-06-24

@@ -3,0 +9,0 @@ ==================

7

index.js

@@ -189,2 +189,5 @@ /**

// Handle the empty result set (thanks @jenbennings!)
if (!pending) return next(null, out);
$scope.each(function(i, el) {

@@ -196,3 +199,5 @@ var $innerscope = $scope.eq(i);

out[i] = obj;
if (!--pending) return next(null, compact(out));
if (!--pending) {
return next(null, compact(out));
}
});

@@ -199,0 +204,0 @@ });

5

package.json
{
"name": "x-ray",
"version": "2.0.1",
"version": "2.0.2",
"description": "structure any website",

@@ -35,2 +35,3 @@ "keywords": [

"devDependencies": {
"concat-stream": "^1.5.0",
"mocha": "^2.2.4",

@@ -41,2 +42,2 @@ "multiline": "^1.0.2",

}
}
}
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