Skip to content

Commit

Permalink
0.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
weizhenye committed Oct 3, 2023
1 parent ba69043 commit 48444e8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion dist/ass-compiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,8 @@
return ("00" + n).slice(-2);
}

function stringifyTime(t) {
function stringifyTime(tf) {
var t = Number.parseFloat(tf.toFixed(2));
var ms = t.toFixed(2).slice(-2);
var s = (t | 0) % 60;
var m = (t / 60 | 0) % 60;
Expand Down
Loading

0 comments on commit 48444e8

Please sign in to comment.