2021-07-16 12:51:28 -04:00
|
|
|
// 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-23 23:42:14 -04:00
|
|
|
exports.DOWN = 0;
|
|
|
|
exports.UP = 1;
|
|
|
|
exports.PENDING = 2;
|
|
|
|
|
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);
|
|
|
|
}
|
2021-06-30 14:02:54 -04:00
|
|
|
|