use ES6 polyfill for worker and tests, not in openpgp.js

This commit is contained in:
Bart Butler 2018-02-05 14:21:35 -08:00
parent 37eec2bde2
commit ac440b9ae6
4 changed files with 1538 additions and 675 deletions

2199
npm-shrinkwrap.json generated

File diff suppressed because it is too large Load Diff

View File

@ -71,10 +71,10 @@
"zlibjs": "~0.3.1"
},
"dependencies": {
"asmcrypto-lite": "git+https://github.com/openpgpjs/asmcrypto-lite.git",
"asn1.js": "^5.0.0",
"bn.js": "^4.11.8",
"buffer": "^5.0.8",
"asn1.js": "^5.0.0",
"asmcrypto-lite": "git+https://github.com/openpgpjs/asmcrypto-lite.git",
"elliptic": "git+https://github.com/openpgpjs/elliptic.git",
"es6-promise": "^4.2.4",
"jwk-to-pem": "^1.2.6",

View File

@ -19,6 +19,11 @@
self.window = {}; // to make UMD bundles work
// ES6 Promise polyfill
if (typeof Promise === 'undefined') {
require('es6-promise').polyfill();
}
importScripts('openpgp.js');
var openpgp = window.openpgp;

View File

@ -1,3 +1,8 @@
// ES6 Promise polyfill
if (typeof Promise === 'undefined') {
require('es6-promise').polyfill();
}
(typeof window !== 'undefined' ? window : global).resolves = function(val) {
return new Promise(function(res) { res(val); });
};