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

q

Package Overview
Dependencies
Maintainers
2
Versions
76
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

q - npm Package Compare versions

Comparing version 0.9.0 to 0.9.1

2

package.json
{
"name": "q",
"version": "0.9.0",
"version": "0.9.1",
"description": "A library for promises (CommonJS/Promises/A,B,D)",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/kriskowal/q",

@@ -47,3 +47,3 @@ // vim:ts=4:sts=4:sw=4:

// RequireJS
} else if (typeof define === "function") {
} else if (typeof define === "function" && define.amd) {
define(definition);

@@ -409,4 +409,7 @@

}
value = valueOf(value); // shorten chain
return value;
var nearer = valueOf(value);
if (isPromise(nearer)) {
value = nearer; // shorten chain
}
return nearer;
};

@@ -413,0 +416,0 @@

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