CoolFace
Apppublic

TrinetraLabs/Placebo_AI

sourceHugging Faceupdated 2mo agoView on Hugging Face
0likes
external.js19 linesDownload Raw Back to lib
1"use strict";2 3// load the global object first:4// - it should be better integrated in the system (unhandledRejection in node)5// - the environment may have a custom Promise implementation (see zone.js)6var ES6Promise = null;7if (typeof Promise !== "undefined") {8    ES6Promise = Promise;9} else {10    ES6Promise = require("lie");11}12 13/**14 * Let the user use/change some implementations.15 */16module.exports = {17    Promise: ES6Promise18};19