An open API service indexing awesome lists of open source software.

https://github.com/zkat/supports-unicode

Detects whether a terminal supports unicode.
https://github.com/zkat/supports-unicode

Last synced: 8 months ago
JSON representation

Detects whether a terminal supports unicode.

Awesome Lists containing this project

README

          

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");
}
```

## MSRV

This crate requires rustc 1.70.0 or later.