mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2026-01-04 20:14:52 +01:00
Updated to v1.9.9
This commit is contained in:
34
conf/site/node_modules/loglevel/README.md
generated
vendored
34
conf/site/node_modules/loglevel/README.md
generated
vendored
@@ -4,6 +4,8 @@
|
||||
[npm-image]: https://img.shields.io/npm/v/loglevel.svg?style=flat
|
||||
[npm-url]: https://npmjs.org/package/loglevel
|
||||
|
||||
> _Don't debug with logs alone - check out [HTTP Toolkit](https://httptoolkit.tech/javascript): beautiful, powerful & open-source tools for building, testing & debugging HTTP(S)_
|
||||
|
||||
Minimal lightweight simple logging for JavaScript. loglevel replaces console.log() and friends with level-based logging and filtering, with none of console's downsides.
|
||||
|
||||
This is a barebones reliable everyday logging library. It does not do fancy things, it does not let you reconfigure appenders or add complex log filtering rules or boil tea (more's the pity), but it does have the all core functionality that you actually use:
|
||||
@@ -75,21 +77,23 @@ log.warn("too easy");
|
||||
|
||||
### As an ES6 module:
|
||||
|
||||
loglevel is written as a UMD module, with a single object exported. ES6 module loaders & transpilers don't all handle this the same way. Some will treat the object as the default export, while others use it as the root exported object. Here are the two cases:
|
||||
loglevel is written as a UMD module, with a single object exported. Unfortunately ES6 module loaders & transpilers don't all handle this the same way. Some will treat the object as the default export, while others use it as the root exported object. In addition, loglevel includes `default` property on the root object, designed to help handle this differences. Nonetheless, there's two possible syntaxes that might work for you:
|
||||
|
||||
For tools like TypeScript and Browserify, which treat root exports as the root value of the module:
|
||||
For most tools, using the default import is the most convenient and flexible option:
|
||||
|
||||
```javascript
|
||||
import log from 'loglevel';
|
||||
log.warn("module-tastic");
|
||||
```
|
||||
|
||||
For some tools though, it might better to wildcard import the whole object:
|
||||
|
||||
```javascript
|
||||
import * as log from 'loglevel';
|
||||
log.warn("module-tastic");
|
||||
```
|
||||
|
||||
For tools like Babel, and Node.js's [experimental ESM support](https://nodejs.org/api/esm.html), which treat root exports as the default export of the module:
|
||||
|
||||
```javascript
|
||||
import log from 'loglevel';
|
||||
log.warn("module-tastic");
|
||||
```
|
||||
There's no major difference, unless you're using TypeScript & building a loglevel plugin (in that case, see https://github.com/pimterry/loglevel/issues/149). In general though, just use whichever suits your environment, and everything should work out fine.
|
||||
|
||||
### With noConflict():
|
||||
|
||||
@@ -155,7 +159,7 @@ The loglevel API is extremely minimal. All methods are available on the root log
|
||||
|
||||
* A `log.setDefaultLevel(level)` method.
|
||||
|
||||
This sets the current log level only if one has not been persisted and can’t be loaded. This is useful when initializing scripts; if a developer or user has previously called `setLevel()`, this won’t alter their settings. For example, your application might set the log level to `error` in a production environment, but when debugging an issue, you might call `setLevel("trace")` on the console to see all the logs. If that `error` setting was set using `setDefaultLevel()`, it will still say as `trace` on subsequent page loads and refreshes instead of resetting to `error`.
|
||||
This sets the current log level only if one has not been persisted and can’t be loaded. This is useful when initializing scripts; if a developer or user has previously called `setLevel()`, this won’t alter their settings. For example, your application might set the log level to `error` in a production environment, but when debugging an issue, you might call `setLevel("trace")` on the console to see all the logs. If that `error` setting was set using `setDefaultLevel()`, it will still stay as `trace` on subsequent page loads and refreshes instead of resetting to `error`.
|
||||
|
||||
The `level` argument takes is the same values that you might pass to `setLevel()`. Levels set using `setDefaultLevel()` never persist to subsequent page loads.
|
||||
|
||||
@@ -185,7 +189,7 @@ The loglevel API is extremely minimal. All methods are available on the root log
|
||||
|
||||
* A `log.getLogger(loggerName)` method.
|
||||
|
||||
This gets you a new logger object that works exactly like the root `log` object, but can have its level and logging methods set independently. All loggers must have a name (which is a non-empty string). Calling `getLogger()` multiple times with the same name will return an identical logger object.
|
||||
This gets you a new logger object that works exactly like the root `log` object, but can have its level and logging methods set independently. All loggers must have a name (which is a non-empty string, or a [Symbol](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol)). Calling `getLogger()` multiple times with the same name will return an identical logger object.
|
||||
|
||||
In large applications, it can be incredibly useful to turn logging on and off for particular modules as you are working with them. Using the `getLogger()` method lets you create a separate logger for each part of your application with its own logging level.
|
||||
|
||||
@@ -220,7 +224,7 @@ The loglevel API is extremely minimal. All methods are available on the root log
|
||||
|
||||
Loggers returned by `getLogger()` support all the same properties and methods as the default root logger, excepting `noConflict()` and the `getLogger()` method itself.
|
||||
|
||||
Like the root logger, other loggers can have their logging level saved. If a logger’s level has not been saved, it will inherit the root logger’s level when it is first created. If the root logger’s level changes later, the new level will not affect other loggers that have already been created.
|
||||
Like the root logger, other loggers can have their logging level saved. If a logger’s level has not been saved, it will inherit the root logger’s level when it is first created. If the root logger’s level changes later, the new level will not affect other loggers that have already been created. Loggers with Symbol names (rather than string names) will be always considered as unique instances, and will never have their logging level saved or restored.
|
||||
|
||||
Likewise, loggers will inherit the root logger’s `methodFactory`. After creation, each logger can have its `methodFactory` independently set. See the *plugins* section below for more about `methodFactory`.
|
||||
|
||||
@@ -238,12 +242,6 @@ The loglevel API is extremely minimal. All methods are available on the root log
|
||||
|
||||
ServerSend - https://github.com/artemyarulin/loglevel-serverSend - Forward your log messages to a remote server.
|
||||
|
||||
Standard Streams - https://github.com/NatLibFi/loglevel-std-streams - Route logging through STDERR in Node for easier log management.
|
||||
|
||||
Message Prefix - https://github.com/NatLibFi/loglevel-message-prefix - Dynamic (timestamp/level) and static ('foo') message prefixing.
|
||||
|
||||
Message Buffer - https://github.com/NatLibFi/loglevel-message-buffer - Buffer messages, and flush them on-demand later.
|
||||
|
||||
DEBUG - https://github.com/vectrlabs/loglevel-debug - Control logging from a DEBUG environmental variable (similar to the classic [Debug](https://github.com/visionmedia/debug) module)
|
||||
|
||||
### Writing plugins:
|
||||
@@ -341,6 +339,8 @@ v1.6.7 - Fix a bug in environments with `window` defined but no `window.navigato
|
||||
|
||||
v1.6.8 - Update TypeScript type definitions to include `log.log()`.
|
||||
|
||||
v1.7.0 - Add support for Symbol-named loggers, and a `.default` property to help with ES6 module usage.
|
||||
|
||||
## `loglevel` for enterprise
|
||||
|
||||
Available as part of the Tidelift Subscription.
|
||||
|
||||
2
conf/site/node_modules/loglevel/bower.json
generated
vendored
2
conf/site/node_modules/loglevel/bower.json
generated
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "loglevel",
|
||||
"version": "1.6.8",
|
||||
"version": "1.7.0",
|
||||
"main": "dist/loglevel.min.js",
|
||||
"dependencies": {},
|
||||
"ignore": [
|
||||
|
||||
16
conf/site/node_modules/loglevel/dist/loglevel.js
generated
vendored
16
conf/site/node_modules/loglevel/dist/loglevel.js
generated
vendored
@@ -1,4 +1,4 @@
|
||||
/*! loglevel - v1.6.8 - https://github.com/pimterry/loglevel - (c) 2020 Tim Perry - licensed MIT */
|
||||
/*! loglevel - v1.7.0 - https://github.com/pimterry/loglevel - (c) 2020 Tim Perry - licensed MIT */
|
||||
(function (root, definition) {
|
||||
"use strict";
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
@@ -113,15 +113,18 @@
|
||||
function Logger(name, defaultLevel, factory) {
|
||||
var self = this;
|
||||
var currentLevel;
|
||||
|
||||
var storageKey = "loglevel";
|
||||
if (name) {
|
||||
if (typeof name === "string") {
|
||||
storageKey += ":" + name;
|
||||
} else if (typeof name === "symbol") {
|
||||
storageKey = undefined;
|
||||
}
|
||||
|
||||
function persistLevelIfPossible(levelNum) {
|
||||
var levelName = (logMethods[levelNum] || 'silent').toUpperCase();
|
||||
|
||||
if (typeof window === undefinedType) return;
|
||||
if (typeof window === undefinedType || !storageKey) return;
|
||||
|
||||
// Use localStorage if available
|
||||
try {
|
||||
@@ -139,7 +142,7 @@
|
||||
function getPersistedLevel() {
|
||||
var storedLevel;
|
||||
|
||||
if (typeof window === undefinedType) return;
|
||||
if (typeof window === undefinedType || !storageKey) return;
|
||||
|
||||
try {
|
||||
storedLevel = window.localStorage[storageKey];
|
||||
@@ -232,7 +235,7 @@
|
||||
|
||||
var _loggersByName = {};
|
||||
defaultLogger.getLogger = function getLogger(name) {
|
||||
if (typeof name !== "string" || name === "") {
|
||||
if ((typeof name !== "symbol" && typeof name !== "string") || name === "") {
|
||||
throw new TypeError("You must supply a name when creating a logger.");
|
||||
}
|
||||
|
||||
@@ -259,5 +262,8 @@
|
||||
return _loggersByName;
|
||||
};
|
||||
|
||||
// ES6 default export, for compatibility
|
||||
defaultLogger['default'] = defaultLogger;
|
||||
|
||||
return defaultLogger;
|
||||
}));
|
||||
|
||||
4
conf/site/node_modules/loglevel/dist/loglevel.min.js
generated
vendored
4
conf/site/node_modules/loglevel/dist/loglevel.min.js
generated
vendored
@@ -1,2 +1,2 @@
|
||||
/*! loglevel - v1.6.8 - https://github.com/pimterry/loglevel - (c) 2020 Tim Perry - licensed MIT */
|
||||
!function(a,b){"use strict";"function"==typeof define&&define.amd?define(b):"object"==typeof module&&module.exports?module.exports=b():a.log=b()}(this,function(){"use strict";function a(a,b){var c=a[b];if("function"==typeof c.bind)return c.bind(a);try{return Function.prototype.bind.call(c,a)}catch(b){return function(){return Function.prototype.apply.apply(c,[a,arguments])}}}function b(){console.log&&(console.log.apply?console.log.apply(console,arguments):Function.prototype.apply.apply(console.log,[console,arguments])),console.trace&&console.trace()}function c(c){return"debug"===c&&(c="log"),typeof console!==i&&("trace"===c&&j?b:void 0!==console[c]?a(console,c):void 0!==console.log?a(console,"log"):h)}function d(a,b){for(var c=0;c<k.length;c++){var d=k[c];this[d]=c<a?h:this.methodFactory(d,a,b)}this.log=this.debug}function e(a,b,c){return function(){typeof console!==i&&(d.call(this,b,c),this[a].apply(this,arguments))}}function f(a,b,d){return c(a)||e.apply(this,arguments)}function g(a,b,c){function e(a){var b=(k[a]||"silent").toUpperCase();if(typeof window!==i){try{return void(window.localStorage[l]=b)}catch(a){}try{window.document.cookie=encodeURIComponent(l)+"="+b+";"}catch(a){}}}function g(){var a;if(typeof window!==i){try{a=window.localStorage[l]}catch(a){}if(typeof a===i)try{var b=window.document.cookie,c=b.indexOf(encodeURIComponent(l)+"=");-1!==c&&(a=/^([^;]+)/.exec(b.slice(c))[1])}catch(a){}return void 0===j.levels[a]&&(a=void 0),a}}var h,j=this,l="loglevel";a&&(l+=":"+a),j.name=a,j.levels={TRACE:0,DEBUG:1,INFO:2,WARN:3,ERROR:4,SILENT:5},j.methodFactory=c||f,j.getLevel=function(){return h},j.setLevel=function(b,c){if("string"==typeof b&&void 0!==j.levels[b.toUpperCase()]&&(b=j.levels[b.toUpperCase()]),!("number"==typeof b&&b>=0&&b<=j.levels.SILENT))throw"log.setLevel() called with invalid level: "+b;if(h=b,!1!==c&&e(b),d.call(j,b,a),typeof console===i&&b<j.levels.SILENT)return"No console available for logging"},j.setDefaultLevel=function(a){g()||j.setLevel(a,!1)},j.enableAll=function(a){j.setLevel(j.levels.TRACE,a)},j.disableAll=function(a){j.setLevel(j.levels.SILENT,a)};var m=g();null==m&&(m=null==b?"WARN":b),j.setLevel(m,!1)}var h=function(){},i="undefined",j=typeof window!==i&&typeof window.navigator!==i&&/Trident\/|MSIE /.test(window.navigator.userAgent),k=["trace","debug","info","warn","error"],l=new g,m={};l.getLogger=function(a){if("string"!=typeof a||""===a)throw new TypeError("You must supply a name when creating a logger.");var b=m[a];return b||(b=m[a]=new g(a,l.getLevel(),l.methodFactory)),b};var n=typeof window!==i?window.log:void 0;return l.noConflict=function(){return typeof window!==i&&window.log===l&&(window.log=n),l},l.getLoggers=function(){return m},l});
|
||||
/*! loglevel - v1.7.0 - https://github.com/pimterry/loglevel - (c) 2020 Tim Perry - licensed MIT */
|
||||
!function(a,b){"use strict";"function"==typeof define&&define.amd?define(b):"object"==typeof module&&module.exports?module.exports=b():a.log=b()}(this,function(){"use strict";function a(a,b){var c=a[b];if("function"==typeof c.bind)return c.bind(a);try{return Function.prototype.bind.call(c,a)}catch(b){return function(){return Function.prototype.apply.apply(c,[a,arguments])}}}function b(){console.log&&(console.log.apply?console.log.apply(console,arguments):Function.prototype.apply.apply(console.log,[console,arguments])),console.trace&&console.trace()}function c(c){return"debug"===c&&(c="log"),typeof console!==i&&("trace"===c&&j?b:void 0!==console[c]?a(console,c):void 0!==console.log?a(console,"log"):h)}function d(a,b){for(var c=0;c<k.length;c++){var d=k[c];this[d]=c<a?h:this.methodFactory(d,a,b)}this.log=this.debug}function e(a,b,c){return function(){typeof console!==i&&(d.call(this,b,c),this[a].apply(this,arguments))}}function f(a,b,d){return c(a)||e.apply(this,arguments)}function g(a,b,c){function e(a){var b=(k[a]||"silent").toUpperCase();if(typeof window!==i&&l){try{return void(window.localStorage[l]=b)}catch(a){}try{window.document.cookie=encodeURIComponent(l)+"="+b+";"}catch(a){}}}function g(){var a;if(typeof window!==i&&l){try{a=window.localStorage[l]}catch(a){}if(typeof a===i)try{var b=window.document.cookie,c=b.indexOf(encodeURIComponent(l)+"=");-1!==c&&(a=/^([^;]+)/.exec(b.slice(c))[1])}catch(a){}return void 0===j.levels[a]&&(a=void 0),a}}var h,j=this,l="loglevel";"string"==typeof a?l+=":"+a:"symbol"==typeof a&&(l=void 0),j.name=a,j.levels={TRACE:0,DEBUG:1,INFO:2,WARN:3,ERROR:4,SILENT:5},j.methodFactory=c||f,j.getLevel=function(){return h},j.setLevel=function(b,c){if("string"==typeof b&&void 0!==j.levels[b.toUpperCase()]&&(b=j.levels[b.toUpperCase()]),!("number"==typeof b&&b>=0&&b<=j.levels.SILENT))throw"log.setLevel() called with invalid level: "+b;if(h=b,!1!==c&&e(b),d.call(j,b,a),typeof console===i&&b<j.levels.SILENT)return"No console available for logging"},j.setDefaultLevel=function(a){g()||j.setLevel(a,!1)},j.enableAll=function(a){j.setLevel(j.levels.TRACE,a)},j.disableAll=function(a){j.setLevel(j.levels.SILENT,a)};var m=g();null==m&&(m=null==b?"WARN":b),j.setLevel(m,!1)}var h=function(){},i="undefined",j=typeof window!==i&&typeof window.navigator!==i&&/Trident\/|MSIE /.test(window.navigator.userAgent),k=["trace","debug","info","warn","error"],l=new g,m={};l.getLogger=function(a){if("symbol"!=typeof a&&"string"!=typeof a||""===a)throw new TypeError("You must supply a name when creating a logger.");var b=m[a];return b||(b=m[a]=new g(a,l.getLevel(),l.methodFactory)),b};var n=typeof window!==i?window.log:void 0;return l.noConflict=function(){return typeof window!==i&&window.log===l&&(window.log=n),l},l.getLoggers=function(){return m},l.default=l,l});
|
||||
5
conf/site/node_modules/loglevel/index.d.ts
generated
vendored
5
conf/site/node_modules/loglevel/index.d.ts
generated
vendored
@@ -68,6 +68,11 @@ declare namespace log {
|
||||
* This will return you the dictionary of all loggers created with getLogger, keyed off of their names.
|
||||
*/
|
||||
getLoggers(): { [name: string]: Logger };
|
||||
|
||||
/**
|
||||
* A .default property for ES6 default import compatibility
|
||||
*/
|
||||
default: RootLogger;
|
||||
}
|
||||
|
||||
interface Logger {
|
||||
|
||||
1
conf/site/node_modules/loglevel/lib/.jshintrc
generated
vendored
1
conf/site/node_modules/loglevel/lib/.jshintrc
generated
vendored
@@ -10,6 +10,7 @@
|
||||
"boss": true,
|
||||
"eqnull": true,
|
||||
"es3": true,
|
||||
"notypeof": true,
|
||||
"globals": {
|
||||
"console": false,
|
||||
"exports": false,
|
||||
|
||||
14
conf/site/node_modules/loglevel/lib/loglevel.js
generated
vendored
14
conf/site/node_modules/loglevel/lib/loglevel.js
generated
vendored
@@ -118,15 +118,18 @@
|
||||
function Logger(name, defaultLevel, factory) {
|
||||
var self = this;
|
||||
var currentLevel;
|
||||
|
||||
var storageKey = "loglevel";
|
||||
if (name) {
|
||||
if (typeof name === "string") {
|
||||
storageKey += ":" + name;
|
||||
} else if (typeof name === "symbol") {
|
||||
storageKey = undefined;
|
||||
}
|
||||
|
||||
function persistLevelIfPossible(levelNum) {
|
||||
var levelName = (logMethods[levelNum] || 'silent').toUpperCase();
|
||||
|
||||
if (typeof window === undefinedType) return;
|
||||
if (typeof window === undefinedType || !storageKey) return;
|
||||
|
||||
// Use localStorage if available
|
||||
try {
|
||||
@@ -144,7 +147,7 @@
|
||||
function getPersistedLevel() {
|
||||
var storedLevel;
|
||||
|
||||
if (typeof window === undefinedType) return;
|
||||
if (typeof window === undefinedType || !storageKey) return;
|
||||
|
||||
try {
|
||||
storedLevel = window.localStorage[storageKey];
|
||||
@@ -237,7 +240,7 @@
|
||||
|
||||
var _loggersByName = {};
|
||||
defaultLogger.getLogger = function getLogger(name) {
|
||||
if (typeof name !== "string" || name === "") {
|
||||
if ((typeof name !== "symbol" && typeof name !== "string") || name === "") {
|
||||
throw new TypeError("You must supply a name when creating a logger.");
|
||||
}
|
||||
|
||||
@@ -264,5 +267,8 @@
|
||||
return _loggersByName;
|
||||
};
|
||||
|
||||
// ES6 default export, for compatibility
|
||||
defaultLogger['default'] = defaultLogger;
|
||||
|
||||
return defaultLogger;
|
||||
}));
|
||||
|
||||
20
conf/site/node_modules/loglevel/package.json
generated
vendored
20
conf/site/node_modules/loglevel/package.json
generated
vendored
@@ -1,32 +1,32 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"loglevel@1.6.8",
|
||||
"loglevel@1.7.0",
|
||||
"/home/henry/Documents/git/Speedtest-tracker-docker/conf/site"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "loglevel@1.6.8",
|
||||
"_id": "loglevel@1.6.8",
|
||||
"_from": "loglevel@1.7.0",
|
||||
"_id": "loglevel@1.7.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-bsU7+gc9AJ2SqpzxwU3+1fedl8zAntbtC5XYlt3s2j1hJcn2PsXSmgN8TaLG/J1/2mod4+cE/3vNL70/c1RNCA==",
|
||||
"_integrity": "sha512-i2sY04nal5jDcagM3FMfG++T69GEEM8CYuOfeOIvmXzOIcwE9a/CJPR0MFM97pYMj/u10lzz7/zd7+qwhrBTqQ==",
|
||||
"_location": "/loglevel",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "loglevel@1.6.8",
|
||||
"raw": "loglevel@1.7.0",
|
||||
"name": "loglevel",
|
||||
"escapedName": "loglevel",
|
||||
"rawSpec": "1.6.8",
|
||||
"rawSpec": "1.7.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.6.8"
|
||||
"fetchSpec": "1.7.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/webpack-dev-server"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.6.8.tgz",
|
||||
"_spec": "1.6.8",
|
||||
"_resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.7.0.tgz",
|
||||
"_spec": "1.7.0",
|
||||
"_where": "/home/henry/Documents/git/Speedtest-tracker-docker/conf/site",
|
||||
"author": {
|
||||
"name": "Tim Perry",
|
||||
@@ -89,5 +89,5 @@
|
||||
"watch": "grunt watch"
|
||||
},
|
||||
"types": "./index.d.ts",
|
||||
"version": "1.6.8"
|
||||
"version": "1.7.0"
|
||||
}
|
||||
|
||||
17
conf/site/node_modules/loglevel/test/node-integration.js
generated
vendored
17
conf/site/node_modules/loglevel/test/node-integration.js
generated
vendored
@@ -24,4 +24,21 @@ describe("loglevel included via node", function () {
|
||||
|
||||
expect(console.info).toHaveBeenCalledWith("test message");
|
||||
});
|
||||
|
||||
it("supports using symbols as names", function() {
|
||||
var log = require('../lib/loglevel');
|
||||
|
||||
var s1 = Symbol("a-symbol");
|
||||
var s2 = Symbol("a-symbol");
|
||||
|
||||
var logger1 = log.getLogger(s1);
|
||||
var defaultLevel = logger1.getLevel();
|
||||
logger1.setLevel(log.levels.TRACE);
|
||||
|
||||
var logger2 = log.getLogger(s2);
|
||||
|
||||
// Should be unequal: same name, but different symbol instances
|
||||
expect(logger1).not.toEqual(logger2);
|
||||
expect(logger2.getLevel()).toEqual(defaultLevel);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user