Files

13 lines
214 B
TypeScript
Raw Permalink Normal View History

2026-03-14 20:41:55 +00:00
/**
Detect whether the terminal supports Unicode.
@example
```
import isUnicodeSupported from 'is-unicode-supported';
isUnicodeSupported();
//=> true
```
*/
export default function isUnicodeSupported(): boolean;