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.

toSequenceExpression.js 497B

123456789101112131415161718192021
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = toSequenceExpression;
  6. var _gatherSequenceExpressions = require("./gatherSequenceExpressions");
  7. function toSequenceExpression(nodes, scope) {
  8. if (!(nodes != null && nodes.length)) return;
  9. const declars = [];
  10. const result = (0, _gatherSequenceExpressions.default)(nodes, scope, declars);
  11. if (!result) return;
  12. for (const declar of declars) {
  13. scope.push(declar);
  14. }
  15. return result;
  16. }