@thisisagile/easy
Version:
Straightforward library for building domain-driven microservice architectures
21 lines (20 loc) • 324 B
JavaScript
import "../chunk-4N72FQFX.mjs";
// src/utils/Log.ts
function log(labelOrT, t) {
if (t) {
console.log(labelOrT, t);
return t;
} else {
console.log(labelOrT);
return labelOrT;
}
}
function dir(t) {
console.dir(t, { depth: 200 });
return t;
}
export {
dir,
log
};
//# sourceMappingURL=Log.mjs.map