Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

targets.js 560B

123456789101112131415161718192021222324252627
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.browserNameMap = exports.unreleasedLabels = void 0;
  6. const unreleasedLabels = {
  7. safari: "tp"
  8. };
  9. exports.unreleasedLabels = unreleasedLabels;
  10. const browserNameMap = {
  11. and_chr: "chrome",
  12. and_ff: "firefox",
  13. android: "android",
  14. chrome: "chrome",
  15. edge: "edge",
  16. firefox: "firefox",
  17. ie: "ie",
  18. ie_mob: "ie",
  19. ios_saf: "ios",
  20. node: "node",
  21. op_mob: "opera",
  22. opera: "opera",
  23. safari: "safari",
  24. samsung: "samsung"
  25. };
  26. exports.browserNameMap = browserNameMap;