Comparing version 0.11.2 to 0.11.3
/* | ||
Yaku v0.11.2 | ||
Yaku v0.11.3 | ||
(c) 2015 Yad Smood. http://ysmood.org | ||
@@ -328,6 +328,6 @@ License MIT | ||
Yaku.onUnhandledRejection = function (reason, p) { | ||
var console = root.console; | ||
if (console) { | ||
var con = root.console; | ||
if (con) { | ||
var info = genStackInfo(reason, p); | ||
console.error($unhandledRejection, info[0], info[1] || ""); | ||
con.error($unhandledRejection, info[0], info[1] || ""); | ||
} | ||
@@ -334,0 +334,0 @@ }; |
{ | ||
"name": "yaku", | ||
"version": "0.11.2", | ||
"version": "0.11.3", | ||
"description": "A light-weight ES6 Promises/A+ implementation that doesn't hurt.", | ||
@@ -42,5 +42,5 @@ "main": "lib/yaku.js", | ||
"es6-promise": "3.0.2", | ||
"eslint": "1.6.0", | ||
"eslint": "1.7.3", | ||
"junit": "0.6.1", | ||
"nokit": "0.14.7", | ||
"nokit": "0.14.9", | ||
"promises-aplus-tests": "*", | ||
@@ -83,5 +83,2 @@ "q": "1.4.1", | ||
"allow-null" | ||
], | ||
"no-console": [ | ||
0 | ||
] | ||
@@ -88,0 +85,0 @@ } |
75228