summaryrefslogtreecommitdiffstats
path: root/common/src/main/webapp/usageguide/appserver/node_modules/mongoose/lib/ES6Promise.js
diff options
context:
space:
mode:
authorlizi <li.zi30@zte.com.cn>2017-09-28 19:16:20 +0800
committerlizi <li.zi30@zte.com.cn>2017-09-28 19:16:20 +0800
commitb2a98df1fcee69ccfbab37774a9bc3152529242f (patch)
treec50c298e0d6ee20658b386da54ae01623f5bc95a /common/src/main/webapp/usageguide/appserver/node_modules/mongoose/lib/ES6Promise.js
parent9d0d1b611f53e3f51f8bf158bfad6eb76e84d945 (diff)
Remove the unused thirdpary code from esr-gui.
Change-Id: I9f7d7234df60c7c33abef2efff051ae433e73c8c Issue-ID: AAI-402 Signed-off-by: lizi <li.zi30@zte.com.cn>
Diffstat (limited to 'common/src/main/webapp/usageguide/appserver/node_modules/mongoose/lib/ES6Promise.js')
-rw-r--r--common/src/main/webapp/usageguide/appserver/node_modules/mongoose/lib/ES6Promise.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/common/src/main/webapp/usageguide/appserver/node_modules/mongoose/lib/ES6Promise.js b/common/src/main/webapp/usageguide/appserver/node_modules/mongoose/lib/ES6Promise.js
deleted file mode 100644
index 13371ac..0000000
--- a/common/src/main/webapp/usageguide/appserver/node_modules/mongoose/lib/ES6Promise.js
+++ /dev/null
@@ -1,26 +0,0 @@
-/**
- * ES6 Promise wrapper constructor.
- *
- * Promises are returned from executed queries. Example:
- *
- * var query = Candy.find({ bar: true });
- * var promise = query.exec();
- *
- * DEPRECATED. Mongoose 5.0 will use native promises by default (or bluebird,
- * if native promises are not present) but still
- * support plugging in your own ES6-compatible promises library. Mongoose 5.0
- * will **not** support mpromise.
- *
- * @param {Function} fn a function which will be called when the promise is resolved that accepts `fn(err, ...){}` as signature
- * @api public
- */
-
-function ES6Promise() {
- throw new Error('Can\'t use ES6 promise with mpromise style constructor');
-}
-
-ES6Promise.use = function(Promise) {
- ES6Promise.ES6 = Promise;
-};
-
-module.exports = ES6Promise;