Skip to content

Instantly share code, notes, and snippets.

@picacure
picacure / tiny Promise.js
Last active January 1, 2016 08:58 — forked from unscriptable/tiny Promise.js
异步 Substitute
// (c) copyright unscriptable.com / John Hann
// License MIT
// For more robust promises, see https://github.com/briancavalier/when.js.
function Promise () {
this._thens = [];
}
Promise.prototype = {