Added game info bar

This commit is contained in:
clerie
2018-04-04 12:31:55 +02:00
parent 811ecfddfb
commit 95741499fd
271 changed files with 46086 additions and 2 deletions
index.js
node_modules
.bin
commander
diff
escape-string-regexp
glob
growl
jade
lru-cache
minimatch
minimist
mkdirp
mocha
quick-local-ip
sigmund
supports-color
to-iso-string
package-lock.jsonpackage.json
public

3
node_modules/to-iso-string/.npmignore generated vendored Normal file

@@ -0,0 +1,3 @@
components
build
node_modules

9
node_modules/to-iso-string/History.md generated vendored Normal file

@@ -0,0 +1,9 @@
0.0.2 - May 12, 2015
--------------------
- Fix npm publish issue
0.0.1 - October 16, 2013
------------------------
:sparkles:

17
node_modules/to-iso-string/Makefile generated vendored Normal file

@@ -0,0 +1,17 @@
build: components node_modules
@component build --dev
clean:
@rm -rf components build node_modules
components: component.json
@component install --dev
node_modules: package.json
@npm install
test: build
@./node_modules/.bin/mocha --reporter spec
.PHONY: clean test

18
node_modules/to-iso-string/Readme.md generated vendored Normal file

@@ -0,0 +1,18 @@
# to-iso-string
Cross-browser toISOString support.
## Example
```js
var iso = require('to-iso-string');
var date = new Date("05 October 2011 14:48 UTC");
iso(date);
// "2011-10-05T14:48:00.000Z"
```
## License
MIT

9
node_modules/to-iso-string/component.json generated vendored Normal file

@@ -0,0 +1,9 @@
{
"name": "to-iso-string",
"repo": "segmentio/to-iso-string",
"version": "0.0.2",
"license": "MIT",
"description": "Cross-browser toISOString support.",
"keywords": ["iso", "format", "iso8601", "date", "isostring", "toISOString"],
"scripts": ["index.js"]
}

40
node_modules/to-iso-string/index.js generated vendored Normal file

@@ -0,0 +1,40 @@
/**
* Expose `toIsoString`.
*/
module.exports = toIsoString;
/**
* Turn a `date` into an ISO string.
*
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString
*
* @param {Date} date
* @return {String}
*/
function toIsoString (date) {
return date.getUTCFullYear()
+ '-' + pad(date.getUTCMonth() + 1)
+ '-' + pad(date.getUTCDate())
+ 'T' + pad(date.getUTCHours())
+ ':' + pad(date.getUTCMinutes())
+ ':' + pad(date.getUTCSeconds())
+ '.' + String((date.getUTCMilliseconds()/1000).toFixed(3)).slice(2, 5)
+ 'Z';
}
/**
* Pad a `number` with a ten's place zero.
*
* @param {Number} number
* @return {String}
*/
function pad (number) {
var n = number.toString();
return n.length === 1 ? '0' + n : n;
}

50
node_modules/to-iso-string/package.json generated vendored Normal file

@@ -0,0 +1,50 @@
{
"_from": "to-iso-string@0.0.2",
"_id": "to-iso-string@0.0.2",
"_inBundle": false,
"_integrity": "sha1-TcGeZk38y+Jb2NtQiwDG2hWCVdE=",
"_location": "/to-iso-string",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "to-iso-string@0.0.2",
"name": "to-iso-string",
"escapedName": "to-iso-string",
"rawSpec": "0.0.2",
"saveSpec": null,
"fetchSpec": "0.0.2"
},
"_requiredBy": [
"/mocha"
],
"_resolved": "https://registry.npmjs.org/to-iso-string/-/to-iso-string-0.0.2.tgz",
"_shasum": "4dc19e664dfccbe25bd8db508b00c6da158255d1",
"_spec": "to-iso-string@0.0.2",
"_where": "/home/clemens/Dokumente/git/pixelnode/node_modules/mocha",
"bugs": {
"url": "https://github.com/segmentio/to-iso-string/issues"
},
"bundleDependencies": false,
"deprecated": "to-iso-string has been deprecated, use @segment/to-iso-string instead.",
"description": "Cross-browser toISOString support.",
"devDependencies": {
"mocha": "*"
},
"homepage": "https://github.com/segmentio/to-iso-string#readme",
"keywords": [
"iso",
"format",
"iso8601",
"date",
"isostring",
"toISOString"
],
"license": "MIT",
"name": "to-iso-string",
"repository": {
"type": "git",
"url": "git://github.com/segmentio/to-iso-string.git"
},
"version": "0.0.2"
}

10
node_modules/to-iso-string/test/index.js generated vendored Normal file

@@ -0,0 +1,10 @@
var assert = require('assert');
var iso = require('..');
describe('to-iso-string', function () {
it('should work', function () {
var date = new Date("05 October 2011 14:48 UTC");
assert('2011-10-05T14:48:00.000Z' == iso(date));
});
});