This guide was written by IroncladWyvern and edited by zachwlewis.
Title | Subtitle | Authors | JSTOR Discipline 1 |
---|---|---|---|
Tracking Rural Change | "Community, Policy and Technology in Australia, New Zealand and Europe" | Socio |
This file contains hidden or 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 | |
// License MIT | |
// For more robust promises, see https://github.com/briancavalier/when.js. | |
function Promise () { | |
this._thens = []; | |
} | |
Promise.prototype = { |