platformUtil.js 234 B

12345678910
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.isPlatformMac = isPlatformMac;
  6. /* istanbul ignore file */
  7. function isPlatformMac() {
  8. return /(mac\sos|macintosh)/i.test(navigator.appVersion);
  9. }