12 lines
214 B
TypeScript
Executable file
12 lines
214 B
TypeScript
Executable file
/**
|
|
Detect whether the terminal supports Unicode.
|
|
|
|
@example
|
|
```
|
|
import isUnicodeSupported from 'is-unicode-supported';
|
|
|
|
isUnicodeSupported();
|
|
//=> true
|
|
```
|
|
*/
|
|
export default function isUnicodeSupported(): boolean;
|