Skip to content

Commit

Permalink
fix: Wrong separator used in time formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
maciejsmolinski committed Mar 8, 2023
1 parent 51bab08 commit a42c1ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Date.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ export function yyyymmdd() {
export function hhmmss() {
const [, , , hours, minutes, seconds] = date();

return [hours, minutes, seconds].join("/");
return [hours, minutes, seconds].join(":");
}

0 comments on commit a42c1ff

Please sign in to comment.