Added game info bar
This commit is contained in:
index.jspackage-lock.jsonpackage.json
node_modules
.bin
commander
diff
escape-string-regexp
glob
growl
jade
.npmignoreLICENSEpackage.jsonruntime.jsruntime.min.jstest.jade
bin
index.jsjade.jsjade.mdjade.min.jslib
compiler.jsdoctypes.jsfilters.jsinline-tags.jsjade.jslexer.js
nodes
attrs.jsblock-comment.jsblock.jscase.jscode.jscomment.jsdoctype.jseach.jsfilter.jsindex.jsliteral.jsmixin.jsnode.jstag.jstext.js
parser.jsruntime.jsself-closing.jsutils.jsnode_modules
commander
mkdirp
testing
lru-cache
minimatch
minimist
mkdirp
mocha
CHANGELOG.mdLICENSEmocha.cssmocha.jspackage.json
bin
images
index.jslib
browser
context.jshook.jsinterfaces
mocha.jsms.jspending.jsreporters
base.jsdoc.jsdot.jshtml-cov.jshtml.jsindex.jsjson-cov.jsjson-stream.jsjson.jslanding.jslist.jsmarkdown.jsmin.jsnyan.jsprogress.jsspec.jstap.js
runnable.jsrunner.jssuite.jstemplate.htmltest.jsutils.jstemplates
xunit.jsnode_modules
debug
.jshintrc.npmignoreHistory.mdMakefileReadme.mdbower.jsonbrowser.jscomponent.jsondebug.jsnode.jspackage.json
ms
quick-local-ip
sigmund
supports-color
to-iso-string
public
11
node_modules/escape-string-regexp/index.js
generated
vendored
Normal file
11
node_modules/escape-string-regexp/index.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
'use strict';
|
||||
|
||||
var matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g;
|
||||
|
||||
module.exports = function (str) {
|
||||
if (typeof str !== 'string') {
|
||||
throw new TypeError('Expected a string');
|
||||
}
|
||||
|
||||
return str.replace(matchOperatorsRe, '\\$&');
|
||||
};
|
68
node_modules/escape-string-regexp/package.json
generated
vendored
Normal file
68
node_modules/escape-string-regexp/package.json
generated
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
{
|
||||
"_from": "escape-string-regexp@1.0.2",
|
||||
"_id": "escape-string-regexp@1.0.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-Tbwv5nTnGUnK8/smlc5/LcHZqNE=",
|
||||
"_location": "/escape-string-regexp",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "escape-string-regexp@1.0.2",
|
||||
"name": "escape-string-regexp",
|
||||
"escapedName": "escape-string-regexp",
|
||||
"rawSpec": "1.0.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.0.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/mocha"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz",
|
||||
"_shasum": "4dbc2fe674e71949caf3fb2695ce7f2dc1d9a8d1",
|
||||
"_spec": "escape-string-regexp@1.0.2",
|
||||
"_where": "/home/clemens/Dokumente/git/pixelnode/node_modules/mocha",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "http://sindresorhus.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/sindresorhus/escape-string-regexp/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"deprecated": false,
|
||||
"description": "Escape RegExp special characters",
|
||||
"devDependencies": {
|
||||
"mocha": "*"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.8.0"
|
||||
},
|
||||
"files": [
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/sindresorhus/escape-string-regexp#readme",
|
||||
"keywords": [
|
||||
"regex",
|
||||
"regexp",
|
||||
"re",
|
||||
"regular",
|
||||
"expression",
|
||||
"escape",
|
||||
"string",
|
||||
"str",
|
||||
"special",
|
||||
"characters"
|
||||
],
|
||||
"license": "MIT",
|
||||
"name": "escape-string-regexp",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/sindresorhus/escape-string-regexp.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "mocha"
|
||||
},
|
||||
"version": "1.0.2"
|
||||
}
|
27
node_modules/escape-string-regexp/readme.md
generated
vendored
Normal file
27
node_modules/escape-string-regexp/readme.md
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
# escape-string-regexp [](https://travis-ci.org/sindresorhus/escape-string-regexp)
|
||||
|
||||
> Escape RegExp special characters
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```sh
|
||||
$ npm install --save escape-string-regexp
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
var escapeStringRegexp = require('escape-string-regexp');
|
||||
|
||||
var escapedString = escapeStringRegexp('how much $ for a unicorn?');
|
||||
//=> how much \$ for a unicorn\?
|
||||
|
||||
new RegExp(escapedString);
|
||||
```
|
||||
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Sindre Sorhus](http://sindresorhus.com)
|
Reference in New Issue
Block a user