diff options
Diffstat (limited to 'libs/combined/index.js')
-rw-r--r-- | libs/combined/index.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/libs/combined/index.js b/libs/combined/index.js index a9b716a..43524ef 100644 --- a/libs/combined/index.js +++ b/libs/combined/index.js | |||
@@ -88,4 +88,24 @@ module.exports.unorm = require('unorm') | |||
88 | 88 | ||
89 | module.exports.zxcvbn = require('zxcvbn') | 89 | module.exports.zxcvbn = require('zxcvbn') |
90 | 90 | ||
91 | /* handshake */ | ||
91 | module.exports.handshake = require('handshake-util') | 92 | module.exports.handshake = require('handshake-util') |
93 | |||
94 | /* bs58 */ | ||
95 | try { | ||
96 | module.exports.bs58 = require('bs58') | ||
97 | } | ||
98 | catch (e) { | ||
99 | console.warn("Error loading bs58 library"); | ||
100 | console.warn(e); | ||
101 | }; | ||
102 | |||
103 | /* create-hash */ | ||
104 | try { | ||
105 | module.exports.createHash = require('create-hash') | ||
106 | } | ||
107 | catch (e) { | ||
108 | console.warn("Error loading create-hash library"); | ||
109 | console.warn(e); | ||
110 | }; | ||
111 | |||