ember-cli-openpgp-shim
Version:
Brings OpenPGP.js into your Ember application!
29 lines (26 loc) • 688 B
JavaScript
(function () {
function vendorModule() {
'use strict';
var openpgp = self['openpgp'];
return {
'armor': openpgp.armor,
'AsyncProxy': openpgp.AsyncProxy,
'cleartext': openpgp.cleartext,
'config': openpgp.config,
'crypto': openpgp.crypto,
'default': openpgp,
'enums': openpgp.enums,
'HKP': openpgp.HKP,
'key': openpgp.key,
'Keyid': openpgp.Keyid,
'Keyring': openpgp.Keyring,
'message': openpgp.message,
'MPI': openpgp.MPI,
'openpgp': openpgp,
'packet': openpgp.packet,
'S2K': openpgp.S2K,
'util': openpgp.util
};
}
define('openpgp', [], vendorModule);
})();