fix: export not default class

This commit is contained in:
lancegin
2017-06-29 14:39:24 +08:00
parent 5a82eb6db6
commit 5544c86620
4 changed files with 11 additions and 11 deletions
+3 -3
View File
@@ -4,12 +4,12 @@
* @author : Gin (gin.lance.inside@hotmail.com)
*/
export default class Base32 {
export class Base32 {
static decode() {
console.log("static Base32.decode");
return "static Base32.decode";
}
static random_gen() {
console.log("static Base32.random_gen");
return "static Base32.random_gen";
}
}