This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// (c) copyright unscriptable.com / John Hann | LegendLee | |
// License MIT | |
// For more robust promises, see https://github.com/briancavalier/when.js. | |
// last edited by LegendLee([email protected]) | |
function Promise() { | |
this._thens = []; | |
} | |
Promise.prototype = { |