From f3b4f8cc35f72c1e05645e3bcc05c98d517071cd Mon Sep 17 00:00:00 2001 From: Daniel Cousens Date: Mon, 23 Jun 2014 13:35:53 +1000 Subject: [PATCH] index: move export to bottom --- index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/index.js b/index.js index 4b48559..2bf9dfe 100644 --- a/index.js +++ b/index.js @@ -4,8 +4,6 @@ var includeFolder = require('include-folder') var Wordlists = includeFolder(path.join(__dirname, 'wordlists')) var crypto = require('crypto') -module.exports = BIP39 - function BIP39(language) { language = language || 'en' this.wordlist = JSON.parse(Wordlists[language]) @@ -90,3 +88,4 @@ function lpad(str, padString, length) { return str; } +module.exports = BIP39