chalk/supports-color






The issue has been closed
Improve the detections #98
ehmicky posted onGitHub
getColorDepth()
was added in Node.js 9.9.0
and hasColors()
and FORCE_COLOR=0|1|2|3
to Node.js 11.13.0
. They are directly based on this module's code.
supports-color
brings extra features:
- supports CLI flag
[--no]-color[s]
- supports browsers (which always default to "no colors")
hasColors()
isundefined
ifstream.isTTY
is nottrue
, i.e. one needs to dostream.hasColors !== undefined && stream.hasColors()
On the other hand, getColorDepth()
and hasColors()
:
- are in core Node.js
- supports more fine grained color detection logic. See the current code. They basically handle much more environment variables cases.
My question is: wouldn't it make sense to do the following?
- export ponyfills of
getColorDepth()
andhasColors()
. Basically, just copy/pasting the code. If the Node.js running version supports those functions, they can be directly used. Those ponyfills could be removed in the future once Node.js supported versions are upgraded. - use those methods instead of the current detection logic.