uptime-kuma/server/util.js

13 lines
285 B
JavaScript
Raw Normal View History

2021-06-29 08:06:20 +00:00
/*
* Common functions - can be used in frontend or backend
*/
export function sleep(ms) {
2021-06-25 13:55:49 +00:00
return new Promise(resolve => setTimeout(resolve, ms));
}
2021-06-29 08:06:20 +00:00
export function ucfirst(str) {
const firstLetter = str.substr(0, 1);
return firstLetter.toUpperCase() + str.substr(1);
}