Skip to content

Commit

Permalink
Release v1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
petkaantonov committed Apr 17, 2014
1 parent e6bd2e0 commit cc114e1
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 42 deletions.
31 changes: 10 additions & 21 deletions browser/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -4585,7 +4585,7 @@ Promise.spawn = function Promise$Spawn(generatorFunction) {
};

},{"./errors.js":27,"./promise_spawn.js":40,"./util.js":55}],33:[function(require,module,exports){
var process=require("__browserify_process"),global=typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {};/**
var global=typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {};/**
* Copyright (c) 2014 Petka Antonov
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
Expand All @@ -4607,28 +4607,17 @@ var process=require("__browserify_process"),global=typeof self !== "undefined" ?
* THE SOFTWARE.
*
*/
"use strict";
module.exports = (function(){
if (typeof this !== "undefined") {
return this;
}
if (typeof process !== "undefined" &&
typeof global !== "undefined" &&
typeof process.execPath === "string") {
return global;
}
if (typeof window !== "undefined" &&
typeof document !== "undefined" &&
typeof navigator !== "undefined" && navigator !== null &&
typeof navigator.appName === "string") {
if(window.wrappedJSObject !== undefined){
return window.wrappedJSObject;
}
return window;
}
module.exports = (function() {
if (this !== void 0) return this;
try {return global;}
catch(e) {}
try {return window;}
catch(e) {}
try {return self;}
catch(e) {}
})();

},{"__browserify_process":16}],34:[function(require,module,exports){
},{}],34:[function(require,module,exports){
/**
* Copyright (c) 2014 Petka Antonov
*
Expand Down
29 changes: 9 additions & 20 deletions js/browser/bluebird.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* bluebird build version 1.2.2
* bluebird build version 1.2.3
* Features enabled: core, timers, race, any, call_get, filter, generators, map, nodeify, promisify, props, reduce, settle, some, progress, cancel
*/
/**
Expand Down Expand Up @@ -1255,25 +1255,14 @@ Promise.spawn = function Promise$Spawn(generatorFunction) {
* THE SOFTWARE.
*
*/
"use strict";
module.exports = (function(){
if (typeof this !== "undefined") {
return this;
}
if (typeof process !== "undefined" &&
typeof global !== "undefined" &&
typeof process.execPath === "string") {
return global;
}
if (typeof window !== "undefined" &&
typeof document !== "undefined" &&
typeof navigator !== "undefined" && navigator !== null &&
typeof navigator.appName === "string") {
if(window.wrappedJSObject !== undefined){
return window.wrappedJSObject;
}
return window;
}
module.exports = (function() {
if (this !== void 0) return this;
try {return global;}
catch(e) {}
try {return window;}
catch(e) {}
try {return self;}
catch(e) {}
})();

},{}],16:[function(require,module,exports){
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bluebird",
"description": "Full featured Promises/A+ implementation with exceptionally good performance",
"version": "1.2.2",
"version": "1.2.3",
"keywords": [
"promise",
"performance",
Expand Down

0 comments on commit cc114e1

Please sign in to comment.