Files
mcp_web_dev_server/node_modules/is-unicode-supported/index.d.ts
T
2026-07-31 13:12:54 -04: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;