summaryrefslogtreecommitdiff
path: root/lib/dojo/promise/Promise.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-11-15 18:48:47 +0300
committerAndrew Dolgov <[email protected]>2021-11-15 18:48:47 +0300
commitef1e2a8b2f593b8c81236c20fec30c44a9cac8a2 (patch)
tree5df94d526aa370751608e1b5f455ce9f30ce75a0 /lib/dojo/promise/Promise.js
parent1db1be7a8155b872c13260f870c27055b63e1dfa (diff)
update dojo/dijit to 1.16.4
Diffstat (limited to 'lib/dojo/promise/Promise.js')
-rw-r--r--lib/dojo/promise/Promise.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dojo/promise/Promise.js b/lib/dojo/promise/Promise.js
index 7b62cdd43..322987732 100644
--- a/lib/dojo/promise/Promise.js
+++ b/lib/dojo/promise/Promise.js
@@ -5,4 +5,4 @@
*/
//>>built
-define("dojo/promise/Promise",["../_base/lang"],function(_1){"use strict";function _2(){throw new TypeError("abstract");};return _1.extend(function Promise(){},{then:function(_3,_4,_5){_2();},cancel:function(_6,_7){_2();},isResolved:function(){_2();},isRejected:function(){_2();},isFulfilled:function(){_2();},isCanceled:function(){_2();},always:function(_8){return this.then(_8,_8);},"catch":function(_9){return this.then(null,_9);},otherwise:function(_a){return this.then(null,_a);},trace:function(){return this;},traceRejected:function(){return this;},toString:function(){return "[object Promise]";}});}); \ No newline at end of file
+define("dojo/promise/Promise",["../_base/lang"],function(_1){"use strict";function _2(){throw new TypeError("abstract");};return _1.extend(function Promise(){},{then:function(_3,_4,_5){_2();},cancel:function(_6,_7){_2();},isResolved:function(){_2();},isRejected:function(){_2();},isFulfilled:function(){_2();},isCanceled:function(){_2();},"finally":function(_8){return this.then(function(_9){var _a=_8();if(_a&&typeof _a.then==="function"){return _a.then(function(){return _9;});}return _9;},function(_b){var _c=_8();if(_c&&typeof _c.then==="function"){return _c.then(function(){throw _b;});}throw _b;});},always:function(_d){return this.then(_d,_d);},"catch":function(_e){return this.then(null,_e);},otherwise:function(_f){return this.then(null,_f);},trace:function(){return this;},traceRejected:function(){return this;},toString:function(){return "[object Promise]";}});}); \ No newline at end of file