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) {
};
exports.pending = function () {
var promise = new Promise();
var promise = new Promise();
return {
promise: promise,
fulfill: function(value) {
promise.resolve(value);
},
reject: function(error) {
promise.reject(error);
}
};
return {
promise: promise,
fulfill: function(value) {
promise.resolve(value);
},
reject: function(error) {
promise.reject(error);
}
};
};
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