aboutsummaryrefslogtreecommitdiff
path: root/vendor/supports-unicode/README.md
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/supports-unicode/README.md
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/supports-unicode/README.md')
-rw-r--r--vendor/supports-unicode/README.md19
1 files changed, 0 insertions, 19 deletions
diff --git a/vendor/supports-unicode/README.md b/vendor/supports-unicode/README.md
deleted file mode 100644
index 3da5ae5..0000000
--- a/vendor/supports-unicode/README.md
+++ /dev/null
@@ -1,19 +0,0 @@
-Detects whether a terminal supports unicode.
-
-This crate is a Rust port mashing together
-[@sindresorhus](https://github.com/sindresorhus)'
-[`is-unicode-supported`](https://npm.im/is-unicode-supported) and
-[@iarna](https://github.com/iarna)'s
-[`has-unicode`](https://npm.im/has-unicode) NPM packages.
-
-## Example
-
-```rust
-use supports_unicode::Stream;
-
-if supports_unicode::on(Stream::Stdout) {
- println!("stdout supports unicode output");
-} else {
- println!("no unicode, please");
-}
-```