astro-ghostcms/.pnpm-store/v3/files/24/27eb7882e3ca489f0d812dd790a...

13 lines
200 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
// src/utils.ts
function stdout() {
return console._stdout || process.stdout || void 0;
}
function stderr() {
return console._stderr || process.stderr || void 0;
}
export {
stdout,
stderr
};