Skip to content

Instantly share code, notes, and snippets.

var r = {};
g = function() {}
g.Si = function() {
var a = this;
this.promise = new Promise(function(b, c) {
a.resolve = b;
a.reject = c
});
};
var f = new g.Si;