uptime-kuma/server/util.js

13 lines
285 B
JavaScript
Raw Normal View History

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