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.

template-safe-parse.js 325B

1234567891011121314
  1. "use strict";
  2. const TemplateSafeParser = require("./template-safe-parser");
  3. const Input = require("postcss/lib/input");
  4. function templateSafeParse (css, opts) {
  5. const input = new Input(css, opts);
  6. const parser = new TemplateSafeParser(input);
  7. parser.parse();
  8. return parser.root;
  9. }
  10. module.exports = templateSafeParse;