Last change
on this file since eed0bf8 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
243 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | /**
|
---|
| 2 | Detect whether the terminal supports Unicode.
|
---|
| 3 |
|
---|
| 4 | @example
|
---|
| 5 | ```
|
---|
| 6 | import isUnicodeSupported = require('is-unicode-supported');
|
---|
| 7 |
|
---|
| 8 | isUnicodeSupported();
|
---|
| 9 | //=> true
|
---|
| 10 | ```
|
---|
| 11 | */
|
---|
| 12 | declare function isUnicodeSupported(): boolean;
|
---|
| 13 |
|
---|
| 14 | export = isUnicodeSupported;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.