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.

object-parse.js 309B

123456789101112131415
  1. 'use strict';
  2. const Input = require('postcss/lib/input');
  3. const ObjectParser = require('./object-parser');
  4. function objectParse(source, opts) {
  5. const input = new Input(source, opts);
  6. const parser = new ObjectParser(input);
  7. parser.parse(opts.node);
  8. return parser.root;
  9. }
  10. module.exports = objectParse;