2021-07-30 03:23:04 +00:00
|
|
|
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
2021-08-16 18:09:40 +00:00
|
|
|
exports.TimeLogger = exports.polyfill = exports.debug = exports.ucfirst = exports.sleep = exports.flipStatus = exports.PENDING = exports.UP = exports.DOWN = exports.appName = exports.isDev = void 0;
|
2021-08-17 11:58:09 +00:00
|
|
|
const _dayjs = require("dayjs");
|
|
|
|
const dayjs = _dayjs;
|
2021-08-16 18:09:40 +00:00
|
|
|
exports.isDev = process.env.NODE_ENV === "development";
|
2021-08-08 03:03:22 +00:00
|
|
|
exports.appName = "Uptime Kuma";
|
2021-07-30 03:23:04 +00:00
|
|
|
exports.DOWN = 0;
|
|
|
|
exports.UP = 1;
|
|
|
|
exports.PENDING = 2;
|
2021-07-30 16:01:04 +00:00
|
|
|
function flipStatus(s) {
|
|
|
|
if (s === exports.UP) {
|
|
|
|
return exports.DOWN;
|
|
|
|
}
|
|
|
|
if (s === exports.DOWN) {
|
|
|
|
return exports.UP;
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
exports.flipStatus = flipStatus;
|
2021-07-30 03:23:04 +00:00
|
|
|
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) {
|
2021-08-16 18:09:40 +00:00
|
|
|
if (exports.isDev) {
|
2021-08-08 13:03:10 +00:00
|
|
|
console.log(msg);
|
2021-07-30 03:23:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
exports.debug = debug;
|
2021-08-09 05:49:37 +00:00
|
|
|
function polyfill() {
|
|
|
|
if (!String.prototype.replaceAll) {
|
|
|
|
String.prototype.replaceAll = function (str, newStr) {
|
|
|
|
if (Object.prototype.toString.call(str).toLowerCase() === "[object regexp]") {
|
|
|
|
return this.replace(str, newStr);
|
|
|
|
}
|
|
|
|
return this.replace(new RegExp(str, "g"), newStr);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exports.polyfill = polyfill;
|
2021-08-16 18:09:40 +00:00
|
|
|
class TimeLogger {
|
|
|
|
constructor() {
|
|
|
|
this.startTime = dayjs().valueOf();
|
|
|
|
}
|
|
|
|
print(name) {
|
|
|
|
if (exports.isDev) {
|
|
|
|
console.log(name + ": " + (dayjs().valueOf() - this.startTime) + "ms");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exports.TimeLogger = TimeLogger;
|