writeStream.hasColors([count][, env])
添加於:v11.13.0、v10.16.0
參數
count
<integer> 請求的顏色數量(最少 2 個)。 默認: 16。env
<Object> 包含要檢查的環境變量的對象。這可以模擬特定終端的使用。 默認:process.env
。- 返回: <boolean>
如果 writeStream
支持的顏色至少與 count
中提供的顏色一樣多,則返回 true
。最小支持為 2(黑色和白色)。
這具有與
中所述相同的誤報和誤報。writeStream.getColorDepth()
process.stdout.hasColors();
// Returns true or false depending on if `stdout` supports at least 16 colors.
process.stdout.hasColors(256);
// Returns true or false depending on if `stdout` supports at least 256 colors.
process.stdout.hasColors({ TMUX: '1' });
// Returns true.
process.stdout.hasColors(2 ** 24, { TMUX: '1' });
// Returns false (the environment setting pretends to support 2 ** 8 colors).
相關用法
- Node.js tlsSocket.authorized用法及代碼示例
- Node.js assert.CallTracker tracker.report()用法及代碼示例
- Node.js tls.DEFAULT_MAX_VERSION用法及代碼示例
- Node.js timersPromises.setTimeout([delay[, value[, options]]])用法及代碼示例
- Node.js tlsSocket.disableRenegotiation()用法及代碼示例
- Node.js tlsSocket.address()用法及代碼示例
- Node.js assert.CallTracker tracker.calls([fn][, exact])用法及代碼示例
- Node.js tlsSocket.remoteAddress用法及代碼示例
- Node.js assert.CallTracker tracker.verify()用法及代碼示例
- Node.js tlsSocket.setMaxSendFragment()用法及代碼示例
- Node.js tlsSocket.getProtocol()用法及代碼示例
- Node.js trim()用法及代碼示例
- Node.js tlsSocket.exportKeyingMaterial()用法及代碼示例
- Node.js tls.DEFAULT_ECDH_CURVE用法及代碼示例
- Node.js tlsSocket.getPeerFinished()用法及代碼示例
- Node.js tlsSocket.getFinished()用法及代碼示例
- Node.js timersPromises.setImmediate([value[, options]])用法及代碼示例
- Node.js text轉speech用法及代碼示例
- Node.js tlsSocket.authorizationError用法及代碼示例
- Node.js tlsSocket.getPeerCertificate()用法及代碼示例
- Node.js transform._transform(chunk, encoding, callback)用法及代碼示例
- Node.js tlsSocket.localAddress用法及代碼示例
- Node.js tlsSocket.getSession()用法及代碼示例
- Node.js tlsSocket.remoteFamily用法及代碼示例
- Node.js tlsSocket.encrypted用法及代碼示例
注:本文由純淨天空篩選整理自nodejs.org大神的英文原創作品 tty.WriteStream.hasColors([count][, env])。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。