Comparing version 0.7.6 to 0.7.7
/* | ||
Yaku v0.7.6 | ||
Yaku v0.7.7 | ||
(c) 2015 Yad Smood. http://ysmood.org | ||
@@ -4,0 +4,0 @@ License MIT |
/* | ||
Yaku v0.7.6 | ||
Yaku v0.7.7 | ||
(c) 2015 Yad Smood. http://ysmood.org | ||
@@ -4,0 +4,0 @@ License MIT |
/* | ||
Yaku v0.7.6 | ||
Yaku v0.7.7 | ||
(c) 2015 Yad Smood. http://ysmood.org | ||
@@ -568,4 +568,3 @@ License MIT | ||
, stackStr | ||
, i | ||
, filename; | ||
, i; | ||
@@ -599,7 +598,3 @@ function trim (str) { return str.replace(/^\s+|\s+$/g, ""); } | ||
return typeof __filename === "string" ? | ||
( | ||
filename = __filename, | ||
stack.replace(RegExp(".+" + filename + ".+\\n?", "g"), "") | ||
) : stack; | ||
return stack.replace(/^.+\/node_modules\/yaku\/.+\n?/mg, ""); | ||
} | ||
@@ -606,0 +601,0 @@ |
{ | ||
"name": "yaku", | ||
"version": "0.7.6", | ||
"version": "0.7.7", | ||
"description": "An ES6 Promises/A+ implementation that doesn't hurt.", | ||
@@ -5,0 +5,0 @@ "main": "lib/yaku.js", |
@@ -20,3 +20,3 @@ <a href="http://promisesaplus.com/"> | ||
- The minified file is only 3.3KB (1.5KB gzipped) ([Bluebird][] / 73KB, [ES6-promise][] / 18KB) | ||
- The minified file is only 3.2KB (1.5KB gzipped) ([Bluebird][] / 73KB, [ES6-promise][] / 18KB) | ||
- [Better "possibly unhandled rejection" and "long stack trace"][docs/debugHelperComparison.md] than [Bluebird][] | ||
@@ -65,3 +65,3 @@ - Much better performance than the native Promise | ||
| -------------------- | -------------------- | --------------- | ------- | --------- | | ||
| Yaku | 257ms / 110MB | 126ms / 80MB | +++ | 3.3KB | | ||
| Yaku | 257ms / 110MB | 126ms / 80MB | +++ | 3.2KB | | ||
| [Bluebird][] v2.9 | 249ms / 102MB | 155ms / 80MB | +++++++ | 73KB | | ||
@@ -68,0 +68,0 @@ | [ES6-promise][] v2.3 | 427ms / 120MB | 92ms / 78MB | + | 18KB | |
60116
1161