Files
CHEVALLIER Abel cb235644dc init
2025-11-13 16:23:22 +01: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;