Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
1234567891011121314 |
- /**
- Detect whether the terminal supports Unicode.
-
- @example
- ```
- import isUnicodeSupported = require('is-unicode-supported');
-
- isUnicodeSupported();
- //=> true
- ```
- */
- declare function isUnicodeSupported(): boolean;
-
- export = isUnicodeSupported;
|