mirror of
https://github.com/LanceGin/jsotp.git
synced 2026-05-24 00:00:05 +08:00
fix: export not default class
This commit is contained in:
+3
-3
@@ -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";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user