Initial
This commit is contained in:
20
resources/app/node_modules/enabled/LICENSE
generated
vendored
Normal file
20
resources/app/node_modules/enabled/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015 Arnout Kazemier, Martijn Swaagman, the Contributors.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
the Software without restriction, including without limitation the rights to
|
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
34
resources/app/node_modules/enabled/index.js
generated
vendored
Normal file
34
resources/app/node_modules/enabled/index.js
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* Checks if a given namespace is allowed by the given variable.
|
||||
*
|
||||
* @param {String} name namespace that should be included.
|
||||
* @param {String} variable Value that needs to be tested.
|
||||
* @returns {Boolean} Indication if namespace is enabled.
|
||||
* @public
|
||||
*/
|
||||
module.exports = function enabled(name, variable) {
|
||||
if (!variable) return false;
|
||||
|
||||
var variables = variable.split(/[\s,]+/)
|
||||
, i = 0;
|
||||
|
||||
for (; i < variables.length; i++) {
|
||||
variable = variables[i].replace('*', '.*?');
|
||||
|
||||
if ('-' === variable.charAt(0)) {
|
||||
if ((new RegExp('^'+ variable.substr(1) +'$')).test(name)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
if ((new RegExp('^'+ variable +'$')).test(name)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
};
|
||||
19
resources/app/node_modules/enabled/package.json
generated
vendored
Normal file
19
resources/app/node_modules/enabled/package.json
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "enabled",
|
||||
"version": "2.0.0",
|
||||
"description": "Check if a certain debug flag is enabled.",
|
||||
"main": "index.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/3rd-Eden/enabled.git"
|
||||
},
|
||||
"author": "Arnout Kazemier",
|
||||
"license": "MIT",
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"assume": "2.1.x",
|
||||
"istanbul": "^0.4.5",
|
||||
"mocha": "5.2.x",
|
||||
"pre-commit": "1.2.x"
|
||||
}
|
||||
}
|
||||
39
resources/app/node_modules/enabled/test.js
generated
vendored
Normal file
39
resources/app/node_modules/enabled/test.js
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
describe('enabled', function () {
|
||||
'use strict';
|
||||
|
||||
var assume = require('assume')
|
||||
, enabled = require('./');
|
||||
|
||||
it('supports wildcards', function () {
|
||||
var variable = 'b*';
|
||||
|
||||
assume(enabled('bigpipe', variable)).to.be.true();
|
||||
assume(enabled('bro-fist', variable)).to.be.true();
|
||||
assume(enabled('ro-fist', variable)).to.be.false();
|
||||
});
|
||||
|
||||
it('is disabled by default', function () {
|
||||
assume(enabled('bigpipe', '')).to.be.false();
|
||||
assume(enabled('bigpipe', 'bigpipe')).to.be.true();
|
||||
});
|
||||
|
||||
it('can ignore loggers using a -', function () {
|
||||
var variable = 'bigpipe,-primus,sack,-other';
|
||||
|
||||
assume(enabled('bigpipe', variable)).to.be.true();
|
||||
assume(enabled('sack', variable)).to.be.true();
|
||||
assume(enabled('primus', variable)).to.be.false();
|
||||
assume(enabled('other', variable)).to.be.false();
|
||||
assume(enabled('unknown', variable)).to.be.false();
|
||||
});
|
||||
|
||||
it('supports multiple ranges', function () {
|
||||
var variable = 'bigpipe*,primus*';
|
||||
|
||||
assume(enabled('bigpipe:', variable)).to.be.true();
|
||||
assume(enabled('bigpipes', variable)).to.be.true();
|
||||
assume(enabled('primus:', variable)).to.be.true();
|
||||
assume(enabled('primush', variable)).to.be.true();
|
||||
assume(enabled('unknown', variable)).to.be.false();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user