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.

constants.js 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', {
  3. value: true
  4. });
  5. exports.default = void 0;
  6. /**
  7. * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
  8. *
  9. * This source code is licensed under the MIT license found in the
  10. * LICENSE file in the root directory of this source tree.
  11. */
  12. /*
  13. * This file exports a set of constants that are used for Jest's haste map
  14. * serialization. On very large repositories, the haste map cache becomes very
  15. * large to the point where it is the largest overhead in starting up Jest.
  16. *
  17. * This constant key map allows to keep the map smaller without having to build
  18. * a custom serialization library.
  19. */
  20. /* eslint-disable sort-keys */
  21. const constants = {
  22. /* dependency serialization */
  23. DEPENDENCY_DELIM: '\0',
  24. /* file map attributes */
  25. ID: 0,
  26. MTIME: 1,
  27. SIZE: 2,
  28. VISITED: 3,
  29. DEPENDENCIES: 4,
  30. SHA1: 5,
  31. /* module map attributes */
  32. PATH: 0,
  33. TYPE: 1,
  34. /* module types */
  35. MODULE: 0,
  36. PACKAGE: 1,
  37. /* platforms */
  38. GENERIC_PLATFORM: 'g',
  39. NATIVE_PLATFORM: 'native'
  40. };
  41. /* eslint-enable */
  42. var _default = constants;
  43. exports.default = _default;