@@ -1,6 +1,5 @@
Promise.prototype.done = function(cb) {
let P = this.constructor;
- console.log('cb', cb);
return this.then(
value => P.resolve(cb()).then(() => value),
reason =>