mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-20 18:59:13 +08:00
17 lines
327 B
Text
17 lines
327 B
Text
/* eslint-env browser */
|
|
|
|
const isBlinkBasedBrowser = /\b(Chrome|Chromium)\//.test(navigator.userAgent);
|
|
|
|
const colorSupport = isBlinkBasedBrowser ? {
|
|
level: 1,
|
|
hasBasic: true,
|
|
has256: false,
|
|
has16m: false,
|
|
} : false;
|
|
|
|
const supportsColor = {
|
|
stdout: colorSupport,
|
|
stderr: colorSupport,
|
|
};
|
|
|
|
export default supportsColor;
|