Merge pull request #872 from James868/patch-3

Fix typo
This commit is contained in:
Ilya Kantor 2019-04-02 08:55:17 +03:00 committed by GitHub
commit 184f7ae38c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,5 +22,5 @@ An alternative solution would be to get hours/minutes/seconds and convert them t
function getSecondsToday() {
let d = new Date();
return d.getHours() * 3600 + d.getMinutes() * 60 + d.getSeconds();
};
}
```