updated npm modules
This commit is contained in:
11
node_modules/bluebird/js/browser/bluebird.core.js
generated
vendored
11
node_modules/bluebird/js/browser/bluebird.core.js
generated
vendored
@@ -23,7 +23,7 @@
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* bluebird build version 3.5.3
|
||||
* bluebird build version 3.5.4
|
||||
* Features enabled: core
|
||||
* Features disabled: race, call_get, generators, map, nodeify, promisify, props, reduce, settle, some, using, timers, filter, any, each
|
||||
*/
|
||||
@@ -2871,7 +2871,7 @@ _dereq_("./synchronous_inspection")(Promise);
|
||||
_dereq_("./join")(
|
||||
Promise, PromiseArray, tryConvertToPromise, INTERNAL, async, getDomain);
|
||||
Promise.Promise = Promise;
|
||||
Promise.version = "3.5.3";
|
||||
Promise.version = "3.5.4";
|
||||
|
||||
util.toFastProperties(Promise);
|
||||
util.toFastProperties(Promise.prototype);
|
||||
@@ -3792,7 +3792,12 @@ var ret = {
|
||||
domainBind: domainBind
|
||||
};
|
||||
ret.isRecentNode = ret.isNode && (function() {
|
||||
var version = process.versions.node.split(".").map(Number);
|
||||
var version;
|
||||
if (process.versions && process.versions.node) {
|
||||
version = process.versions.node.split(".").map(Number);
|
||||
} else if (process.version) {
|
||||
version = process.version.split(".").map(Number);
|
||||
}
|
||||
return (version[0] === 0 && version[1] > 10) || (version[0] > 0);
|
||||
})();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user