mirror of
https://github.com/iflytek/skillhub.git
synced 2026-09-25 01:04:14 +00:00
7 lines
175 B
TypeScript
7 lines
175 B
TypeScript
export function computeStrictIsTTY(env: {
|
|
stdinIsTTY: boolean
|
|
stdoutIsTTY: boolean
|
|
json: boolean
|
|
}): boolean {
|
|
return env.stdinIsTTY && env.stdoutIsTTY && !env.json
|
|
}
|