aboutsummaryrefslogtreecommitdiff
path: root/node_modules/fbjs/lib/Deferred.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2018-09-20 02:56:13 +0200
committerFlorian Dold <florian.dold@gmail.com>2018-09-20 02:56:13 +0200
commitbbff7403fbf46f9ad92240ac213df8d30ef31b64 (patch)
treec58400ec5124da1c7d56b01aea83309f80a56c3b /node_modules/fbjs/lib/Deferred.js
parent003fb34971cf63466184351b4db5f7c67df4f444 (diff)
update packages
Diffstat (limited to 'node_modules/fbjs/lib/Deferred.js')
-rw-r--r--node_modules/fbjs/lib/Deferred.js79
1 files changed, 0 insertions, 79 deletions
diff --git a/node_modules/fbjs/lib/Deferred.js b/node_modules/fbjs/lib/Deferred.js
deleted file mode 100644
index 8ec65ccf0..000000000
--- a/node_modules/fbjs/lib/Deferred.js
+++ /dev/null
@@ -1,79 +0,0 @@
-"use strict";
-
-var Promise = require("./Promise");
-
-function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
-/**
- * Copyright (c) 2013-present, Facebook, Inc.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- *
- * @typechecks
- *
- */
-
-/**
- * Deferred provides a Promise-like API that exposes methods to resolve and
- * reject the Promise. It is most useful when converting non-Promise code to use
- * Promises.
- *
- * If you want to export the Promise without exposing access to the resolve and
- * reject methods, you should export `getPromise` which returns a Promise with
- * the same semantics excluding those methods.
- */
-var Deferred = function () {
- function Deferred() {
- var _this = this;
-
- _classCallCheck(this, Deferred);
-
- this._settled = false;
- this._promise = new Promise(function (resolve, reject) {
- _this._resolve = resolve;
- _this._reject = reject;
- });
- }
-
- Deferred.prototype.getPromise = function getPromise() {
- return this._promise;
- };
-
- Deferred.prototype.resolve = function resolve(value) {
- this._settled = true;
- this._resolve(value);
- };
-
- Deferred.prototype.reject = function reject(reason) {
- this._settled = true;
- this._reject(reason);
- };
-
- Deferred.prototype["catch"] = function _catch(onReject) {
- return Promise.prototype["catch"].apply(this._promise, arguments);
- };
-
- Deferred.prototype.then = function then(onFulfill, onReject) {
- return Promise.prototype.then.apply(this._promise, arguments);
- };
-
- Deferred.prototype.done = function done(onFulfill, onReject) {
- // Embed the polyfill for the non-standard Promise.prototype.done so that
- // users of the open source fbjs don't need a custom lib for Promise
- var promise = arguments.length ? this._promise.then.apply(this._promise, arguments) : this._promise;
- promise.then(undefined, function (err) {
- setTimeout(function () {
- throw err;
- }, 0);
- });
- };
-
- Deferred.prototype.isSettled = function isSettled() {
- return this._settled;
- };
-
- return Deferred;
-}();
-
-module.exports = Deferred; \ No newline at end of file