remove unnecessary semicolon
This commit is contained in:
parent
6fb90e522c
commit
39d027fd0b
2
index.js
2
index.js
@ -119,7 +119,7 @@ var totp = {};
|
|||||||
totp.gen = function(key, opt) {
|
totp.gen = function(key, opt) {
|
||||||
opt = opt || {};
|
opt = opt || {};
|
||||||
var time = opt.time || 30;
|
var time = opt.time || 30;
|
||||||
var _t = new Date().getTime();;
|
var _t = new Date().getTime();
|
||||||
|
|
||||||
// Time has been overwritten.
|
// Time has been overwritten.
|
||||||
if(opt._t) {
|
if(opt._t) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user