kjelsrud.dev/node_modules/is-unicode-supported/index.d.ts

13 lines
214 B
TypeScript
Raw Normal View History

2023-07-19 21:31:30 +02:00
/**
Detect whether the terminal supports Unicode.
@example
```
import isUnicodeSupported from 'is-unicode-supported';
isUnicodeSupported();
//=> true
```
*/
export default function isUnicodeSupported(): boolean;