@fdm-monster/server
Version:
FDM Monster is a bulk OctoPrint manager to set up, configure and monitor 3D printers. Our aim is to provide extremely optimized websocket performance and reliability.
26 lines (25 loc) • 514 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
function _export(target, all) {
for(var name in all)Object.defineProperty(target, name, {
enumerable: true,
get: all[name]
});
}
_export(exports, {
PL: function() {
return PL;
},
PP: function() {
return PP;
}
});
function PP(input) {
return JSON.stringify(input, null, 2);
}
function PL(input) {
console.log(PP(input));
}
//# sourceMappingURL=pretty-print.utils.js.map