Commit 67557879 authored by Rick Waldron's avatar Rick Waldron

Fix rightward drift by reducing indent to match rest of file

parent 3c4b86aa
...@@ -15,17 +15,17 @@ exports.rejected = function(error) { ...@@ -15,17 +15,17 @@ exports.rejected = function(error) {
}; };
exports.pending = function () { exports.pending = function () {
var promise = new Promise(); var promise = new Promise();
return { return {
promise: promise, promise: promise,
fulfill: function(value) { fulfill: function(value) {
promise.resolve(value); promise.resolve(value);
}, },
reject: function(error) { reject: function(error) {
promise.reject(error); promise.reject(error);
} }
}; };
}; };
exports.throws = true; exports.throws = true;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment