We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88ec35e commit af9d01bCopy full SHA for af9d01b
lib/promise.js
@@ -278,7 +278,7 @@
278
resolve: function(result) {
279
if (this._resolved || this._rejected) {
280
throw "A promise was resolved even though it had already been " +
281
- (this._resolved ? "resolved" : "rejected") + "." + result;
+ (this._resolved ? "resolved" : "rejected") + ".";
282
}
283
this._resolved = true;
284
this._result = arguments;
0 commit comments