Files
tasq/node_modules/is-unicode-supported/index.d.ts
T
2026-04-09 19:01:53 +08:00

13 lines
214 B
TypeScript

/**
Detect whether the terminal supports Unicode.
@example
```
import isUnicodeSupported from 'is-unicode-supported';
isUnicodeSupported();
//=> true
```
*/
export default function isUnicodeSupported(): boolean;