uptime-kuma/server/util.js

17 lines
379 B
JavaScript
Raw Normal View History

// Common JS cannot be used in frontend sadly
// sleep, ucfirst is duplicated in ../src/util-frontend.js
2021-07-01 09:47:14 -04:00
2021-07-15 13:44:51 -04:00
exports.sleep = function (ms) {
2021-06-25 09:55:49 -04:00
return new Promise(resolve => setTimeout(resolve, ms));
}
2021-06-29 04:06:20 -04:00
2021-07-15 13:44:51 -04:00
exports.ucfirst = function (str) {
2021-07-09 02:14:03 -04:00
if (! str) {
return str;
}
2021-06-29 04:06:20 -04:00
const firstLetter = str.substr(0, 1);
return firstLetter.toUpperCase() + str.substr(1);
}