8 lines
153 B
Plaintext
8 lines
153 B
Plaintext
import { isBrowser } from './env';
|
|
|
|
export const output = {
|
|
write(str: string) {
|
|
return isBrowser ? undefined : process.stdout.write(str);
|
|
},
|
|
};
|