b3ecdeabe3c47773e6b7d04b131382eaca816ad502a34e0cbb855b7214d5d63c5aa4179bb86f3cd0bb0acdb6a1b78ecbbf0c3875dd4b99f7ec09f67d6b5c59 243 B

1234567891011121314
  1. /**
  2. Detect whether the terminal supports Unicode.
  3. @example
  4. ```
  5. import isUnicodeSupported = require('is-unicode-supported');
  6. isUnicodeSupported();
  7. //=> true
  8. ```
  9. */
  10. declare function isUnicodeSupported(): boolean;
  11. export = isUnicodeSupported;