Files

15 lines
243 B
TypeScript
Raw Permalink Normal View History

2023-03-06 14:23:39 +07:00
/**
Detect whether the terminal supports Unicode.
@example
```
import isUnicodeSupported = require('is-unicode-supported');
isUnicodeSupported();
//=> true
```
*/
declare function isUnicodeSupported(): boolean;
export = isUnicodeSupported;