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.
Maximilian Gold 4f8071fffe Uploaded the base of the project the working demo of CH1 Multiplayer Game Development with HTML5 3 years ago
..
test Uploaded the base of the project the working demo of CH1 Multiplayer Game Development with HTML5 3 years ago
.gitattributes Uploaded the base of the project the working demo of CH1 Multiplayer Game Development with HTML5 3 years ago
.npmignore Uploaded the base of the project the working demo of CH1 Multiplayer Game Development with HTML5 3 years ago
.travis.yml Uploaded the base of the project the working demo of CH1 Multiplayer Game Development with HTML5 3 years ago
LICENSE Uploaded the base of the project the working demo of CH1 Multiplayer Game Development with HTML5 3 years ago
README.md Uploaded the base of the project the working demo of CH1 Multiplayer Game Development with HTML5 3 years ago
index.js Uploaded the base of the project the working demo of CH1 Multiplayer Game Development with HTML5 3 years ago
package.json Uploaded the base of the project the working demo of CH1 Multiplayer Game Development with HTML5 3 years ago
pre-publish.js Uploaded the base of the project the working demo of CH1 Multiplayer Game Development with HTML5 3 years ago

README.md

void-elements

Array of “void elements” defined by the HTML specification

Exports an Array of “void element” node names as defined by the HTML spec.

The list is programatically generated from SPEC.

Build Status Dependency Status NPM version

Usage

var voidElements = require('void-elements');

assert(voidElements.indexOf('span') === -1, '<span> is not a void element');
assert(voidElements.indexOf('img') !== -1, '<img> is a void element');

License

MIT