aboutsummaryrefslogtreecommitdiff
path: root/libs/combined/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'libs/combined/index.js')
-rw-r--r--libs/combined/index.js20
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
89module.exports.zxcvbn = require('zxcvbn') 89module.exports.zxcvbn = require('zxcvbn')
90 90
91/* handshake */
91module.exports.handshake = require('handshake-util') 92module.exports.handshake = require('handshake-util')
93
94/* bs58 */
95try {
96 module.exports.bs58 = require('bs58')
97}
98catch (e) {
99 console.warn("Error loading bs58 library");
100 console.warn(e);
101};
102
103/* create-hash */
104try {
105 module.exports.createHash = require('create-hash')
106}
107catch (e) {
108 console.warn("Error loading create-hash library");
109 console.warn(e);
110};
111