Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

Platform.web.js 404B

12345678910111213141516171819202122
  1. /* @flow */
  2. const userAgent = navigator.userAgent;
  3. let OS;
  4. if (userAgent.match(/Android/i)) {
  5. OS = 'android';
  6. } else if (userAgent.match(/iP(ad|hone|od)/i)) {
  7. OS = 'ios';
  8. }
  9. /**
  10. * Provides a minimal equivalent of react-native's Platform abstraction.
  11. */
  12. export default {
  13. /**
  14. * The operating system on which the application is executing.
  15. *
  16. * @type {string}
  17. */
  18. OS
  19. };