%PDF- %PDF-
Direktori : /home/jalalj2hb/www/ftm-admin/bower_components/jszip/documentation/api_jszip/ |
Current File : /home/jalalj2hb/www/ftm-admin/bower_components/jszip/documentation/api_jszip/external.md |
--- title: "JSZip.external" layout: default section: api --- JSZip uses objects that may not exist on every platform, in which case it uses a shim. Accessing or replacing these objects can sometimes be useful. JSZip.external contains the following properties : * `Promise` : the [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) implementation used. The global object is prefered when available. __Example__ ```js // use bluebird instead JSZip.external.Promise = Bluebird; // use the native Promise object: JSZip.external.Promise = Promise; ```