mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-11 08:04:17 -08:00
25 lines
662 B
JavaScript
25 lines
662 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.debug = exports.ucfirst = exports.sleep = exports.PENDING = exports.UP = exports.DOWN = void 0;
|
|
exports.DOWN = 0;
|
|
exports.UP = 1;
|
|
exports.PENDING = 2;
|
|
function sleep(ms) {
|
|
return new Promise(resolve => setTimeout(resolve, ms));
|
|
}
|
|
exports.sleep = sleep;
|
|
function ucfirst(str) {
|
|
if (!str) {
|
|
return str;
|
|
}
|
|
const firstLetter = str.substr(0, 1);
|
|
return firstLetter.toUpperCase() + str.substr(1);
|
|
}
|
|
exports.ucfirst = ucfirst;
|
|
function debug(msg) {
|
|
if (process.env.NODE_ENV === "development") {
|
|
console.log(msg);
|
|
}
|
|
}
|
|
exports.debug = debug;
|