Skip to content

Commit

Permalink
Move wordlists
Browse files Browse the repository at this point in the history
  • Loading branch information
junderw committed Mar 26, 2019
1 parent 9f805df commit e895565
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions ts_src/index.ts
Expand Up @@ -5,14 +5,14 @@ import randomBytes = require('randombytes');
// use unorm until String.prototype.normalize gets better browser support
import unorm = require('unorm');

import CHINESE_SIMPLIFIED_WORDLIST = require('./wordlists/chinese_simplified.json');
import CHINESE_TRADITIONAL_WORDLIST = require('./wordlists/chinese_traditional.json');
import ENGLISH_WORDLIST = require('./wordlists/english.json');
import FRENCH_WORDLIST = require('./wordlists/french.json');
import ITALIAN_WORDLIST = require('./wordlists/italian.json');
import JAPANESE_WORDLIST = require('./wordlists/japanese.json');
import KOREAN_WORDLIST = require('./wordlists/korean.json');
import SPANISH_WORDLIST = require('./wordlists/spanish.json');
import CHINESE_SIMPLIFIED_WORDLIST = require('../wordlists/chinese_simplified.json');
import CHINESE_TRADITIONAL_WORDLIST = require('../wordlists/chinese_traditional.json');
import ENGLISH_WORDLIST = require('../wordlists/english.json');
import FRENCH_WORDLIST = require('../wordlists/french.json');
import ITALIAN_WORDLIST = require('../wordlists/italian.json');
import JAPANESE_WORDLIST = require('../wordlists/japanese.json');
import KOREAN_WORDLIST = require('../wordlists/korean.json');
import SPANISH_WORDLIST = require('../wordlists/spanish.json');
const DEFAULT_WORDLIST = ENGLISH_WORDLIST;

const INVALID_MNEMONIC = 'Invalid mnemonic';
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit e895565

Please sign in to comment.