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.

spec-parser.cjs 552B

1234567891011121314151617181920212223242526272829
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. const util_1 = require("../util.cjs");
  6. function getParser({
  7. tokenizers
  8. }) {
  9. return function parseSpec(source) {
  10. var _a;
  11. let spec = util_1.seedSpec({
  12. source
  13. });
  14. for (const tokenize of tokenizers) {
  15. spec = tokenize(spec);
  16. if ((_a = spec.problems[spec.problems.length - 1]) === null || _a === void 0 ? void 0 : _a.critical) break;
  17. }
  18. return spec;
  19. };
  20. }
  21. exports.default = getParser;
  22. //# sourceMappingURL=spec-parser.cjs.map