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.

index.cjs 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. "use strict";
  2. var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
  3. if (k2 === undefined) k2 = k;
  4. Object.defineProperty(o, k2, {
  5. enumerable: true,
  6. get: function () {
  7. return m[k];
  8. }
  9. });
  10. } : function (o, m, k, k2) {
  11. if (k2 === undefined) k2 = k;
  12. o[k2] = m[k];
  13. });
  14. var __exportStar = this && this.__exportStar || function (m, exports) {
  15. for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
  16. };
  17. Object.defineProperty(exports, "__esModule", {
  18. value: true
  19. });
  20. exports.util = exports.tokenizers = exports.transforms = exports.inspect = exports.stringify = exports.parse = void 0;
  21. const index_1 = require("./parser/index.cjs");
  22. const description_1 = require("./parser/tokenizers/description.cjs");
  23. const name_1 = require("./parser/tokenizers/name.cjs");
  24. const tag_1 = require("./parser/tokenizers/tag.cjs");
  25. const type_1 = require("./parser/tokenizers/type.cjs");
  26. const index_2 = require("./stringifier/index.cjs");
  27. const align_1 = require("./transforms/align.cjs");
  28. const indent_1 = require("./transforms/indent.cjs");
  29. const crlf_1 = require("./transforms/crlf.cjs");
  30. const index_3 = require("./transforms/index.cjs");
  31. const util_1 = require("./util.cjs");
  32. __exportStar(require("./primitives.cjs"), exports);
  33. function parse(source, options = {}) {
  34. return index_1.default(options)(source);
  35. }
  36. exports.parse = parse;
  37. exports.stringify = index_2.default();
  38. var inspect_1 = require("./stringifier/inspect.cjs");
  39. Object.defineProperty(exports, "inspect", {
  40. enumerable: true,
  41. get: function () {
  42. return inspect_1.default;
  43. }
  44. });
  45. exports.transforms = {
  46. flow: index_3.flow,
  47. align: align_1.default,
  48. indent: indent_1.default,
  49. crlf: crlf_1.default
  50. };
  51. exports.tokenizers = {
  52. tag: tag_1.default,
  53. type: type_1.default,
  54. name: name_1.default,
  55. description: description_1.default
  56. };
  57. exports.util = {
  58. rewireSpecs: util_1.rewireSpecs,
  59. rewireSource: util_1.rewireSource,
  60. seedBlock: util_1.seedBlock,
  61. seedTokens: util_1.seedTokens
  62. };
  63. //# sourceMappingURL=index.cjs.map