Ein Projekt das es ermöglicht Beerpong über das Internet von zwei unabhängigen positionen aus zu spielen. Entstehung im Rahmen einer Praktikumsaufgabe im Fach Interaktion.
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.

doctype.js 375B

1234567891011121314151617181920
  1. 'use strict';
  2. var Node = require('./node');
  3. /**
  4. * Initialize a `Doctype` with the given `val`.
  5. *
  6. * @param {String} val
  7. * @api public
  8. */
  9. var Doctype = module.exports = function Doctype(val) {
  10. this.val = val;
  11. };
  12. // Inherit from `Node`.
  13. Doctype.prototype = Object.create(Node.prototype);
  14. Doctype.prototype.constructor = Doctype;
  15. Doctype.prototype.type = 'Doctype';