Socket
Socket
Sign inDemoInstall

bluebird

Package Overview
Dependencies
0
Maintainers
1
Versions
223
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.9.18 to 2.9.19

6

changelog.md

@@ -0,1 +1,7 @@

## 2.9.19 (2015-03-29)
Bugfixes:
- Fix crashing in Chrome when long stack traces are disabled
## 2.9.18 (2015-03-29)

@@ -2,0 +8,0 @@

6

js/main/async.js

@@ -84,3 +84,3 @@ "use strict";

if (this._trampolineEnabled) {
AsyncInvokeLater(fn, receiver, arg);
AsyncInvokeLater.call(this, fn, receiver, arg);
} else {

@@ -95,3 +95,3 @@ setTimeout(function() {

if (this._trampolineEnabled) {
AsyncInvoke(fn, receiver, arg);
AsyncInvoke.call(this, fn, receiver, arg);
} else {

@@ -106,3 +106,3 @@ setTimeout(function() {

if (this._trampolineEnabled) {
AsyncSettlePromises(promise);
AsyncSettlePromises.call(this, promise);
} else {

@@ -109,0 +109,0 @@ setTimeout(function() {

{
"name": "bluebird",
"description": "Full featured Promises/A+ implementation with exceptionally good performance",
"version": "2.9.18",
"version": "2.9.19",
"keywords": [

@@ -6,0 +6,0 @@ "promise",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc