@kirz/react-native-toolkit
Version:
Toolkit to speed up React Native development
22 lines (20 loc) • 1.16 kB
JavaScript
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
export class ControlledPromise {
// @ts-ignore
// @ts-ignore
constructor() {
_defineProperty(this, "promise", void 0);
_defineProperty(this, "resolve", void 0);
_defineProperty(this, "reject", void 0);
this.promise = new Promise((resolve, reject) => {
this.resolve = resolve;
this.reject = reject;
});
}
wait() {
return this.promise;
}
}
//# sourceMappingURL=control.js.map