23 lines
507 B
JavaScript
23 lines
507 B
JavaScript
module.exports = {
|
|
shitFormat: obj => {
|
|
if (!obj) return console.log(obj, "\n");
|
|
const keys = Object.keys(obj);
|
|
const vals = Object.values(obj);
|
|
|
|
keys.forEach((key, i) => {
|
|
let output = vals[i];
|
|
if (typeof output === "object") output = "object";
|
|
console.log(key, output);
|
|
});
|
|
console.log("");
|
|
},
|
|
|
|
formatCas: c => {
|
|
const h = Math.floor(c / 3600);
|
|
const m = Math.floor(c % 3600 / 60);
|
|
const s = Math.floor(c % 3600 % 60);
|
|
|
|
return `${h} hodin ${m} mynut a ${s} se kund`;
|
|
}
|
|
};
|