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.js 439B

123456789101112131415161718192021222324
  1. 'use strict';
  2. const Container = require('postcss/lib/container');
  3. /**
  4. * Represents a JS Object Literal
  5. *
  6. * @extends Container
  7. *
  8. * @example
  9. * const root = postcss.parse('{}');
  10. * const obj = root.first;
  11. * obj.type //=> 'object'
  12. * obj.toString() //=> '{}'
  13. */
  14. class ObjectLiteral extends Container {
  15. constructor(defaults) {
  16. super(defaults);
  17. this.type = 'object';
  18. this.nodes = [];
  19. }
  20. }
  21. module.exports = ObjectLiteral;