clientnode 4.0.1441 → 4.0.1443
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Lock.d.ts +39 -0
- package/dist/Lock.js +69 -83
- package/dist/Logger.d.ts +102 -0
- package/dist/Logger.js +756 -163
- package/dist/Semaphore.d.ts +29 -0
- package/dist/Semaphore.js +56 -46
- package/dist/array.d.ts +150 -0
- package/dist/array.js +661 -337
- package/dist/bundle/Lock.js +86 -0
- package/dist/bundle/Logger.js +778 -0
- package/dist/bundle/Semaphore.js +75 -0
- package/dist/bundle/array.js +776 -0
- package/dist/bundle/cli.js +59 -0
- package/dist/bundle/constants.js +214 -0
- package/dist/bundle/context.js +280 -0
- package/dist/bundle/cookie.js +301 -0
- package/dist/bundle/data-transfer.js +825 -0
- package/dist/bundle/datetime.js +1148 -0
- package/dist/bundle/domNode.js +549 -0
- package/dist/bundle/expression/evaluators.js +1228 -0
- package/dist/bundle/expression/helper.js +117 -0
- package/dist/bundle/expression/index.js +1357 -0
- package/dist/bundle/expression/indicator-functions.js +332 -0
- package/dist/bundle/expression/type.js +16 -0
- package/dist/bundle/filesystem.js +436 -0
- package/dist/bundle/function.js +117 -0
- package/dist/bundle/index.js +3249 -0
- package/dist/bundle/indicators.js +565 -0
- package/dist/bundle/module.js +213 -0
- package/dist/bundle/number.js +527 -0
- package/dist/bundle/object.js +1104 -0
- package/dist/bundle/process.js +291 -0
- package/dist/bundle/property-types.js +36 -0
- package/dist/bundle/scope.js +2121 -0
- package/dist/bundle/string.js +1213 -0
- package/dist/bundle/test-helper.js +802 -0
- package/dist/bundle/type.js +16 -0
- package/dist/bundle/utility.js +420 -0
- package/dist/cli.d.ts +31 -0
- package/dist/cli.js +45 -37
- package/dist/compatible/Lock.js +86 -0
- package/dist/compatible/Logger.js +778 -0
- package/dist/compatible/Semaphore.js +75 -0
- package/dist/compatible/array.js +776 -0
- package/dist/compatible/cli.js +59 -0
- package/dist/compatible/constants.js +214 -0
- package/dist/compatible/context.js +280 -0
- package/dist/compatible/cookie.js +301 -0
- package/dist/compatible/data-transfer.js +825 -0
- package/dist/compatible/datetime.js +1148 -0
- package/dist/compatible/domNode.js +549 -0
- package/dist/compatible/expression/evaluators.js +1228 -0
- package/dist/compatible/expression/helper.js +117 -0
- package/dist/compatible/expression/index.js +1357 -0
- package/dist/compatible/expression/indicator-functions.js +332 -0
- package/dist/compatible/expression/type.js +16 -0
- package/dist/compatible/filesystem.js +436 -0
- package/dist/compatible/function.js +117 -0
- package/dist/compatible/index.js +3249 -0
- package/dist/compatible/indicators.js +565 -0
- package/dist/compatible/module.js +213 -0
- package/dist/compatible/number.js +527 -0
- package/dist/compatible/object.js +1104 -0
- package/dist/compatible/process.js +291 -0
- package/dist/compatible/property-types.js +36 -0
- package/dist/compatible/scope.js +2121 -0
- package/dist/compatible/string.js +1213 -0
- package/dist/compatible/test-helper.js +802 -0
- package/dist/compatible/type.js +16 -0
- package/dist/compatible/utility.js +420 -0
- package/dist/constants.d.ts +99 -0
- package/dist/constants.js +198 -110
- package/dist/context.d.ts +8 -0
- package/dist/context.js +265 -25
- package/dist/cookie.d.ts +31 -0
- package/dist/cookie.js +265 -48
- package/dist/data-transfer.d.ts +45 -0
- package/dist/data-transfer.js +775 -166
- package/dist/datetime.d.ts +37 -0
- package/dist/datetime.js +1107 -241
- package/dist/domNode.d.ts +82 -0
- package/dist/domNode.js +495 -277
- package/dist/expression/evaluators.d.ts +55 -0
- package/dist/expression/evaluators.js +1189 -234
- package/dist/expression/helper.d.ts +4 -0
- package/dist/expression/helper.js +102 -82
- package/dist/expression/index.d.ts +7 -0
- package/dist/expression/index.js +1341 -10
- package/dist/expression/indicator-functions.d.ts +14 -0
- package/dist/expression/indicator-functions.js +316 -21
- package/dist/expression/type.d.ts +70 -0
- package/dist/expression/type.js +1 -5
- package/dist/filesystem.d.ts +143 -0
- package/dist/filesystem.js +349 -323
- package/dist/function.d.ts +20 -0
- package/dist/function.js +93 -51
- package/dist/index.d.ts +23 -0
- package/dist/index.js +3232 -26
- package/dist/indicators.d.ts +68 -0
- package/dist/indicators.js +512 -68
- package/dist/module.d.ts +8 -0
- package/dist/module.js +197 -99
- package/dist/number.d.ts +35 -0
- package/dist/number.js +491 -25
- package/dist/object.d.ts +231 -0
- package/dist/object.js +917 -775
- package/dist/process.d.ts +22 -0
- package/dist/process.js +261 -38
- package/dist/property-types.d.ts +460 -0
- package/dist/property-types.js +17 -96
- package/dist/scope.d.ts +44 -0
- package/dist/scope.js +2092 -56
- package/dist/string.d.ts +312 -0
- package/dist/string.js +991 -603
- package/dist/test/Lock.d.ts +1 -0
- package/dist/test/Logger.d.ts +1 -0
- package/dist/test/Semaphore.d.ts +1 -0
- package/dist/test/array.d.ts +1 -0
- package/dist/test/cookie.d.ts +1 -0
- package/dist/test/data-transfer.d.ts +1 -0
- package/dist/test/datetime.d.ts +1 -0
- package/dist/test/domNode.d.ts +1 -0
- package/dist/test/expression/evaluators.d.ts +1 -0
- package/dist/test/expression/helper.d.ts +1 -0
- package/dist/test/expression/indicator-functions.d.ts +1 -0
- package/dist/test/filesystem.d.ts +1 -0
- package/dist/test/function.d.ts +1 -0
- package/dist/test/indicators.d.ts +1 -0
- package/dist/test/number.d.ts +1 -0
- package/dist/test/object.d.ts +1 -0
- package/dist/test/process.d.ts +1 -0
- package/dist/test/property-types.d.ts +1 -0
- package/dist/test/scope.d.ts +1 -0
- package/dist/test/string.d.ts +1 -0
- package/dist/test/utility.d.ts +1 -0
- package/dist/test-helper.d.ts +143 -0
- package/dist/test-helper.js +633 -171
- package/dist/type.d.ts +230 -0
- package/dist/type.js +4 -9
- package/dist/utility.d.ts +44 -0
- package/dist/utility.js +372 -91
- package/package.json +3 -3
package/dist/Lock.d.ts
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import type { LockCallbackFunction, Mapping } from './type';
|
|
2
|
+
/**
|
|
3
|
+
* Represents the lock state.
|
|
4
|
+
* @property locks - Mapping of lock descriptions to their corresponding
|
|
5
|
+
* callbacks.
|
|
6
|
+
*/
|
|
7
|
+
export declare class Lock<Type = string | undefined> {
|
|
8
|
+
lock?: Array<LockCallbackFunction<Type>>;
|
|
9
|
+
locks: Mapping<Array<LockCallbackFunction<Type>>>;
|
|
10
|
+
/**
|
|
11
|
+
* Initializes locks.
|
|
12
|
+
* @param locks - Mapping of a lock description to callbacks for calling
|
|
13
|
+
* when given lock should be released.
|
|
14
|
+
*/
|
|
15
|
+
constructor(locks?: Mapping<Array<LockCallbackFunction<Type>>>);
|
|
16
|
+
/**
|
|
17
|
+
* Calling this method introduces a starting point for a critical area with
|
|
18
|
+
* potential race conditions. The area will be bind to given description
|
|
19
|
+
* string. So don't use same names for different areas.
|
|
20
|
+
* @param description - A short string describing the critical areas
|
|
21
|
+
* properties.
|
|
22
|
+
* @param callback - A procedure which should only be executed if the
|
|
23
|
+
* interpreter isn't in the given critical area. The lock description
|
|
24
|
+
* string will be given to the callback function.
|
|
25
|
+
* @param autoRelease - Release the lock after execution of given callback.
|
|
26
|
+
* @returns Returns a promise which will be resolved after releasing lock.
|
|
27
|
+
*/
|
|
28
|
+
acquire(description?: string, callback?: LockCallbackFunction<Type>, autoRelease?: boolean): Promise<Type>;
|
|
29
|
+
/**
|
|
30
|
+
* Calling this method causes the given critical area to be finished and
|
|
31
|
+
* all functions given to "acquire()" will be executed in right order.
|
|
32
|
+
* @param description - A short string describing the critical areas
|
|
33
|
+
* properties.
|
|
34
|
+
* @returns Returns the return (maybe promise resolved) value of the
|
|
35
|
+
* callback given to the "acquire" method.
|
|
36
|
+
*/
|
|
37
|
+
release(description?: string): Promise<Type | undefined>;
|
|
38
|
+
}
|
|
39
|
+
export default Lock;
|
package/dist/Lock.js
CHANGED
|
@@ -1,9 +1,47 @@
|
|
|
1
|
+
if(typeof window==='undefined'||window===null)var window=(typeof global==='undefined'||global===null)?{}:global;/******/ // The require scope
|
|
2
|
+
/******/ var __webpack_require__ = {};
|
|
3
|
+
/******/
|
|
4
|
+
/************************************************************************/
|
|
5
|
+
/******/ /* webpack/runtime/define property getters */
|
|
6
|
+
/******/ !function() {
|
|
7
|
+
/******/ // define getter/value functions for harmony exports
|
|
8
|
+
/******/ __webpack_require__.d = function(exports, definition) {
|
|
9
|
+
/******/ if(Array.isArray(definition)) {
|
|
10
|
+
/******/ var i = 0;
|
|
11
|
+
/******/ while(i < definition.length) {
|
|
12
|
+
/******/ var key = definition[i++];
|
|
13
|
+
/******/ var binding = definition[i++];
|
|
14
|
+
/******/ if(!__webpack_require__.o(exports, key)) {
|
|
15
|
+
/******/ if(binding === 0) {
|
|
16
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, value: definition[i++] });
|
|
17
|
+
/******/ } else {
|
|
18
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: binding });
|
|
19
|
+
/******/ }
|
|
20
|
+
/******/ } else if(binding === 0) { i++; }
|
|
21
|
+
/******/ }
|
|
22
|
+
/******/ } else {
|
|
23
|
+
/******/ for(var key in definition) {
|
|
24
|
+
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
25
|
+
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
26
|
+
/******/ }
|
|
27
|
+
/******/ }
|
|
28
|
+
/******/ }
|
|
29
|
+
/******/ };
|
|
30
|
+
/******/ }();
|
|
31
|
+
/******/
|
|
32
|
+
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
33
|
+
/******/ !function() {
|
|
34
|
+
/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
|
|
35
|
+
/******/ }();
|
|
36
|
+
/******/
|
|
37
|
+
/************************************************************************/
|
|
38
|
+
var __webpack_exports__ = {};
|
|
39
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
40
|
+
/* harmony export */ c: function() { return /* binding */ Lock; }
|
|
41
|
+
/* harmony export */ });
|
|
1
42
|
// #!/usr/bin/env babel-node
|
|
2
43
|
// -*- coding: utf-8 -*-
|
|
3
|
-
/** @module Lock
|
|
4
|
-
'use strict';
|
|
5
|
-
|
|
6
|
-
/* !
|
|
44
|
+
/** @module Lock *//* !
|
|
7
45
|
region header
|
|
8
46
|
[Project page](https://torben.website/clientnode)
|
|
9
47
|
|
|
@@ -16,85 +54,33 @@
|
|
|
16
54
|
naming 3.0 unported license.
|
|
17
55
|
See https://creativecommons.org/licenses/by/3.0/deed.de
|
|
18
56
|
endregion
|
|
19
|
-
*/
|
|
20
|
-
import "core-js/modules/es.array.push.js";
|
|
21
|
-
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
|
22
|
-
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
|
|
23
|
-
function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
|
24
|
-
/**
|
|
57
|
+
*/function _typeof(o){"@babel/helpers - typeof";return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(o){return typeof o}:function(o){return o&&"function"==typeof Symbol&&o.constructor===Symbol&&o!==Symbol.prototype?"symbol":typeof o},_typeof(o)}function _regenerator(){/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */var e,t,r="function"==typeof Symbol?Symbol:{},n=r.iterator||"@@iterator",o=r.toStringTag||"@@toStringTag";function i(r,n,o,i){var c=n&&n.prototype instanceof Generator?n:Generator,u=Object.create(c.prototype);return _regeneratorDefine2(u,"_invoke",function(r,n,o){var i,c,u,f=0,p=o||[],y=!1,G={p:0,n:0,v:e,a:d,f:d.bind(e,4),d:function d(t,r){return i=t,c=0,u=e,G.n=r,a}};function d(r,n){for(c=r,u=n,t=0;!y&&f&&!o&&t<p.length;t++){var o,i=p[t],d=G.p,l=i[2];r>3?(o=l===n)&&(u=i[(c=i[4])?5:(c=3,3)],i[4]=i[5]=e):i[0]<=d&&((o=r<2&&d<i[1])?(c=0,G.v=n,G.n=i[1]):d<l&&(o=r<3||i[0]>n||n>l)&&(i[4]=r,i[5]=n,G.n=l,c=0))}if(o||r>1)return a;throw y=!0,n}return function(o,p,l){if(f>1)throw TypeError("Generator is already running");for(y&&1===p&&d(p,l),c=p,u=l;(t=c<2?e:u)||!y;){i||(c?c<3?(c>1&&(G.n=-1),d(c,u)):G.n=u:G.v=u);try{if(f=2,i){if(c||(o="next"),t=i[o]){if(!(t=t.call(i,u)))throw TypeError("iterator result is not an object");if(!t.done)return t;u=t.value,c<2&&(c=0)}else 1===c&&(t=i.return)&&t.call(i),c<2&&(u=TypeError("The iterator does not provide a '"+o+"' method"),c=1);i=e}else if((t=(y=G.n<0)?u:r.call(n,G))!==a)break}catch(t){i=e,c=1,u=t}finally{f=1}}return{value:t,done:y}}}(r,o,i),!0),u}var a={};function Generator(){}function GeneratorFunction(){}function GeneratorFunctionPrototype(){}t=Object.getPrototypeOf;var c=[][n]?t(t([][n]())):(_regeneratorDefine2(t={},n,function(){return this}),t),u=GeneratorFunctionPrototype.prototype=Generator.prototype=Object.create(c);function f(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,GeneratorFunctionPrototype):(e.__proto__=GeneratorFunctionPrototype,_regeneratorDefine2(e,o,"GeneratorFunction")),e.prototype=Object.create(u),e}return GeneratorFunction.prototype=GeneratorFunctionPrototype,_regeneratorDefine2(u,"constructor",GeneratorFunctionPrototype),_regeneratorDefine2(GeneratorFunctionPrototype,"constructor",GeneratorFunction),GeneratorFunction.displayName="GeneratorFunction",_regeneratorDefine2(GeneratorFunctionPrototype,o,"GeneratorFunction"),_regeneratorDefine2(u),_regeneratorDefine2(u,o,"Generator"),_regeneratorDefine2(u,n,function(){return this}),_regeneratorDefine2(u,"toString",function(){return"[object Generator]"}),(_regenerator=function _regenerator(){return{w:i,m:f}})()}function _regeneratorDefine2(e,r,n,t){var i=Object.defineProperty;try{i({},"",{})}catch(e){i=0}_regeneratorDefine2=function _regeneratorDefine(e,r,n,t){function o(r,n){_regeneratorDefine2(e,r,function(e){return this._invoke(r,n,e)})}r?i?i(e,r,{value:n,enumerable:!t,configurable:!t,writable:!t}):e[r]=n:(o("next",0),o("throw",1),o("return",2))},_regeneratorDefine2(e,r,n,t)}function asyncGeneratorStep(n,t,e,r,o,a,c){try{var i=n[a](c),u=i.value}catch(n){return void e(n)}i.done?t(u):Promise.resolve(u).then(r,o)}function _asyncToGenerator(n){return function(){var t=this,e=arguments;return new Promise(function(r,o){var a=n.apply(t,e);function _next(n){asyncGeneratorStep(a,r,o,_next,_throw,"next",n)}function _throw(n){asyncGeneratorStep(a,r,o,_next,_throw,"throw",n)}_next(void 0)})}}function _classCallCheck(a,n){if(!(a instanceof n))throw new TypeError("Cannot call a class as a function")}function _defineProperties(e,r){for(var t=0;t<r.length;t++){var o=r[t];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,_toPropertyKey(o.key),o)}}function _createClass(e,r,t){return r&&_defineProperties(e.prototype,r),t&&_defineProperties(e,t),Object.defineProperty(e,"prototype",{writable:!1}),e}function _defineProperty(e,r,t){return(r=_toPropertyKey(r))in e?Object.defineProperty(e,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[r]=t,e}function _toPropertyKey(t){var i=_toPrimitive(t,"string");return"symbol"==_typeof(i)?i:i+""}function _toPrimitive(t,r){if("object"!=_typeof(t)||!t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var i=e.call(t,r||"default");if("object"!=_typeof(i))return i;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===r?String:Number)(t)}/**
|
|
25
58
|
* Represents the lock state.
|
|
26
59
|
* @property locks - Mapping of lock descriptions to their corresponding
|
|
27
60
|
* callbacks.
|
|
28
|
-
*/
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
const wrappedCallback = description => {
|
|
55
|
-
let result;
|
|
56
|
-
if (callback) result = callback(description);
|
|
57
|
-
const finish = value => {
|
|
58
|
-
if (autoRelease) void this.release(description);
|
|
59
|
-
resolve(value);
|
|
60
|
-
return value;
|
|
61
|
-
};
|
|
62
|
-
if (result?.then) return result.then(finish);
|
|
63
|
-
finish(result);
|
|
64
|
-
return result;
|
|
65
|
-
};
|
|
66
|
-
if (description) {
|
|
67
|
-
if (Object.prototype.hasOwnProperty.call(this.locks, description)) this.locks[description].push(wrappedCallback);else {
|
|
68
|
-
this.locks[description] = [];
|
|
69
|
-
void wrappedCallback(description);
|
|
70
|
-
}
|
|
71
|
-
return;
|
|
72
|
-
}
|
|
73
|
-
if (this.lock) this.lock.push(wrappedCallback);else {
|
|
74
|
-
this.lock = [];
|
|
75
|
-
void wrappedCallback(description);
|
|
76
|
-
}
|
|
77
|
-
});
|
|
78
|
-
}
|
|
79
|
-
/**
|
|
80
|
-
* Calling this method causes the given critical area to be finished and
|
|
81
|
-
* all functions given to "acquire()" will be executed in right order.
|
|
82
|
-
* @param description - A short string describing the critical areas
|
|
83
|
-
* properties.
|
|
84
|
-
* @returns Returns the return (maybe promise resolved) value of the
|
|
85
|
-
* callback given to the "acquire" method.
|
|
86
|
-
*/
|
|
87
|
-
async release(description) {
|
|
88
|
-
if (description) {
|
|
89
|
-
if (Object.prototype.hasOwnProperty.call(this.locks, description)) {
|
|
90
|
-
const callback = this.locks[description].shift();
|
|
91
|
-
if (callback === undefined) delete this.locks[description];else return await callback(description);
|
|
92
|
-
}
|
|
93
|
-
return;
|
|
94
|
-
}
|
|
95
|
-
const callback = this.lock?.shift();
|
|
96
|
-
if (callback === undefined) this.lock = undefined;else return await callback();
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
export default Lock;
|
|
100
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6W10sInNvdXJjZXMiOlsiLi4vc3JjL0xvY2sudHMiXSwic291cmNlc0NvbnRlbnQiOlsiLy8gIyEvdXNyL2Jpbi9lbnYgYmFiZWwtbm9kZVxuLy8gLSotIGNvZGluZzogdXRmLTggLSotXG4vKiogQG1vZHVsZSBMb2NrICovXG4ndXNlIHN0cmljdCdcbi8qICFcbiAgICByZWdpb24gaGVhZGVyXG4gICAgW1Byb2plY3QgcGFnZV0oaHR0cHM6Ly90b3JiZW4ud2Vic2l0ZS9jbGllbnRub2RlKVxuXG4gICAgQ29weXJpZ2h0IFRvcmJlbiBTaWNrZXJ0IChpbmZvW1wifmF0flwiXXRvcmJlbi53ZWJzaXRlKSAxNi4xMi4yMDEyXG5cbiAgICBMaWNlbnNlXG4gICAgLS0tLS0tLVxuXG4gICAgVGhpcyBsaWJyYXJ5IHdyaXR0ZW4gYnkgVG9yYmVuIFNpY2tlcnQgc3RhbmRzIHVuZGVyIGEgY3JlYXRpdmUgY29tbW9uc1xuICAgIG5hbWluZyAzLjAgdW5wb3J0ZWQgbGljZW5zZS5cbiAgICBTZWUgaHR0cHM6Ly9jcmVhdGl2ZWNvbW1vbnMub3JnL2xpY2Vuc2VzL2J5LzMuMC9kZWVkLmRlXG4gICAgZW5kcmVnaW9uXG4qL1xuaW1wb3J0IHR5cGUge0xvY2tDYWxsYmFja0Z1bmN0aW9uLCBNYXBwaW5nfSBmcm9tICcuL3R5cGUnXG5cbi8qKlxuICogUmVwcmVzZW50cyB0aGUgbG9jayBzdGF0ZS5cbiAqIEBwcm9wZXJ0eSBsb2NrcyAtIE1hcHBpbmcgb2YgbG9jayBkZXNjcmlwdGlvbnMgdG8gdGhlaXIgY29ycmVzcG9uZGluZ1xuICogY2FsbGJhY2tzLlxuICovXG5leHBvcnQgY2xhc3MgTG9jazxUeXBlID0gc3RyaW5nIHwgdW5kZWZpbmVkPiB7XG4gICAgbG9jaz86IEFycmF5PExvY2tDYWxsYmFja0Z1bmN0aW9uPFR5cGU+PlxuICAgIGxvY2tzOiBNYXBwaW5nPEFycmF5PExvY2tDYWxsYmFja0Z1bmN0aW9uPFR5cGU+Pj5cbiAgICAvKipcbiAgICAgKiBJbml0aWFsaXplcyBsb2Nrcy5cbiAgICAgKiBAcGFyYW0gbG9ja3MgLSBNYXBwaW5nIG9mIGEgbG9jayBkZXNjcmlwdGlvbiB0byBjYWxsYmFja3MgZm9yIGNhbGxpbmdcbiAgICAgKiB3aGVuIGdpdmVuIGxvY2sgc2hvdWxkIGJlIHJlbGVhc2VkLlxuICAgICAqL1xuICAgIGNvbnN0cnVjdG9yKGxvY2tzOiBNYXBwaW5nPEFycmF5PExvY2tDYWxsYmFja0Z1bmN0aW9uPFR5cGU+Pj4gPSB7fSkge1xuICAgICAgICB0aGlzLmxvY2tzID0gbG9ja3NcbiAgICB9XG4gICAgLyoqXG4gICAgICogQ2FsbGluZyB0aGlzIG1ldGhvZCBpbnRyb2R1Y2VzIGEgc3RhcnRpbmcgcG9pbnQgZm9yIGEgY3JpdGljYWwgYXJlYSB3aXRoXG4gICAgICogcG90ZW50aWFsIHJhY2UgY29uZGl0aW9ucy4gVGhlIGFyZWEgd2lsbCBiZSBiaW5kIHRvIGdpdmVuIGRlc2NyaXB0aW9uXG4gICAgICogc3RyaW5nLiBTbyBkb24ndCB1c2Ugc2FtZSBuYW1lcyBmb3IgZGlmZmVyZW50IGFyZWFzLlxuICAgICAqIEBwYXJhbSBkZXNjcmlwdGlvbiAtIEEgc2hvcnQgc3RyaW5nIGRlc2NyaWJpbmcgdGhlIGNyaXRpY2FsIGFyZWFzXG4gICAgICogcHJvcGVydGllcy5cbiAgICAgKiBAcGFyYW0gY2FsbGJhY2sgLSBBIHByb2NlZHVyZSB3aGljaCBzaG91bGQgb25seSBiZSBleGVjdXRlZCBpZiB0aGVcbiAgICAgKiBpbnRlcnByZXRlciBpc24ndCBpbiB0aGUgZ2l2ZW4gY3JpdGljYWwgYXJlYS4gVGhlIGxvY2sgZGVzY3JpcHRpb25cbiAgICAgKiBzdHJpbmcgd2lsbCBiZSBnaXZlbiB0byB0aGUgY2FsbGJhY2sgZnVuY3Rpb24uXG4gICAgICogQHBhcmFtIGF1dG9SZWxlYXNlIC0gUmVsZWFzZSB0aGUgbG9jayBhZnRlciBleGVjdXRpb24gb2YgZ2l2ZW4gY2FsbGJhY2suXG4gICAgICogQHJldHVybnMgUmV0dXJucyBhIHByb21pc2Ugd2hpY2ggd2lsbCBiZSByZXNvbHZlZCBhZnRlciByZWxlYXNpbmcgbG9jay5cbiAgICAgKi9cbiAgICBhY3F1aXJlKFxuICAgICAgICBkZXNjcmlwdGlvbj86IHN0cmluZyxcbiAgICAgICAgY2FsbGJhY2s/OiBMb2NrQ2FsbGJhY2tGdW5jdGlvbjxUeXBlPixcbiAgICAgICAgYXV0b1JlbGVhc2UgPSBmYWxzZVxuICAgICk6IFByb21pc2U8VHlwZT4ge1xuICAgICAgICByZXR1cm4gbmV3IFByb21pc2U8VHlwZT4oKHJlc29sdmU6ICh2YWx1ZTogVHlwZSkgPT4gdm9pZCk6IHZvaWQgPT4ge1xuICAgICAgICAgICAgY29uc3Qgd3JhcHBlZENhbGxiYWNrOiBMb2NrQ2FsbGJhY2tGdW5jdGlvbjxUeXBlPiA9IChcbiAgICAgICAgICAgICAgICBkZXNjcmlwdGlvbj86IHN0cmluZ1xuICAgICAgICAgICAgKTogUHJvbWlzZTxUeXBlPiB8IFR5cGUgPT4ge1xuICAgICAgICAgICAgICAgIGxldCByZXN1bHQ6IFByb21pc2U8VHlwZT4gfCBUeXBlIHwgdW5kZWZpbmVkXG4gICAgICAgICAgICAgICAgaWYgKGNhbGxiYWNrKVxuICAgICAgICAgICAgICAgICAgICByZXN1bHQgPSBjYWxsYmFjayhkZXNjcmlwdGlvbilcblxuICAgICAgICAgICAgICAgIGNvbnN0IGZpbmlzaCA9ICh2YWx1ZTogVHlwZSk6IFR5cGUgPT4ge1xuICAgICAgICAgICAgICAgICAgICBpZiAoYXV0b1JlbGVhc2UpXG4gICAgICAgICAgICAgICAgICAgICAgICB2b2lkIHRoaXMucmVsZWFzZShkZXNjcmlwdGlvbilcblxuICAgICAgICAgICAgICAgICAgICByZXNvbHZlKHZhbHVlKVxuXG4gICAgICAgICAgICAgICAgICAgIHJldHVybiB2YWx1ZVxuICAgICAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgICAgIGlmICgocmVzdWx0IGFzIG51bGwgfCBQcm9taXNlPFR5cGU+KT8udGhlbilcbiAgICAgICAgICAgICAgICAgICAgcmV0dXJuIChyZXN1bHQgYXMgUHJvbWlzZTxUeXBlPikudGhlbihmaW5pc2gpXG5cbiAgICAgICAgICAgICAgICBmaW5pc2gocmVzdWx0IGFzIFR5cGUpXG5cbiAgICAgICAgICAgICAgICByZXR1cm4gcmVzdWx0IGFzIFR5cGVcbiAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgaWYgKGRlc2NyaXB0aW9uKSB7XG4gICAgICAgICAgICAgICAgaWYgKE9iamVjdC5wcm90b3R5cGUuaGFzT3duUHJvcGVydHkuY2FsbChcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5sb2NrcywgZGVzY3JpcHRpb24pXG4gICAgICAgICAgICAgICAgKVxuICAgICAgICAgICAgICAgICAgICB0aGlzLmxvY2tzW2Rlc2NyaXB0aW9uXS5wdXNoKHdyYXBwZWRDYWxsYmFjaylcbiAgICAgICAgICAgICAgICBlbHNlIHtcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5sb2Nrc1tkZXNjcmlwdGlvbl0gPSBbXVxuXG4gICAgICAgICAgICAgICAgICAgIHZvaWQgd3JhcHBlZENhbGxiYWNrKGRlc2NyaXB0aW9uKVxuICAgICAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgICAgIHJldHVyblxuICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICBpZiAodGhpcy5sb2NrKVxuICAgICAgICAgICAgICAgIHRoaXMubG9jay5wdXNoKHdyYXBwZWRDYWxsYmFjaylcbiAgICAgICAgICAgIGVsc2Uge1xuICAgICAgICAgICAgICAgIHRoaXMubG9jayA9IFtdXG5cbiAgICAgICAgICAgICAgICB2b2lkIHdyYXBwZWRDYWxsYmFjayhkZXNjcmlwdGlvbilcbiAgICAgICAgICAgIH1cbiAgICAgICAgfSlcbiAgICB9XG4gICAgLyoqXG4gICAgICogQ2FsbGluZyB0aGlzIG1ldGhvZCBjYXVzZXMgdGhlIGdpdmVuIGNyaXRpY2FsIGFyZWEgdG8gYmUgZmluaXNoZWQgYW5kXG4gICAgICogYWxsIGZ1bmN0aW9ucyBnaXZlbiB0byBcImFjcXVpcmUoKVwiIHdpbGwgYmUgZXhlY3V0ZWQgaW4gcmlnaHQgb3JkZXIuXG4gICAgICogQHBhcmFtIGRlc2NyaXB0aW9uIC0gQSBzaG9ydCBzdHJpbmcgZGVzY3JpYmluZyB0aGUgY3JpdGljYWwgYXJlYXNcbiAgICAgKiBwcm9wZXJ0aWVzLlxuICAgICAqIEByZXR1cm5zIFJldHVybnMgdGhlIHJldHVybiAobWF5YmUgcHJvbWlzZSByZXNvbHZlZCkgdmFsdWUgb2YgdGhlXG4gICAgICogY2FsbGJhY2sgZ2l2ZW4gdG8gdGhlIFwiYWNxdWlyZVwiIG1ldGhvZC5cbiAgICAgKi9cbiAgICBhc3luYyByZWxlYXNlKGRlc2NyaXB0aW9uPzogc3RyaW5nKTogUHJvbWlzZTxUeXBlIHwgdW5kZWZpbmVkPiB7XG4gICAgICAgIGlmIChkZXNjcmlwdGlvbikge1xuICAgICAgICAgICAgaWYgKE9iamVjdC5wcm90b3R5cGUuaGFzT3duUHJvcGVydHkuY2FsbChcbiAgICAgICAgICAgICAgICB0aGlzLmxvY2tzLCBkZXNjcmlwdGlvblxuICAgICAgICAgICAgKSkge1xuICAgICAgICAgICAgICAgIGNvbnN0IGNhbGxiYWNrOiBMb2NrQ2FsbGJhY2tGdW5jdGlvbjxUeXBlPiB8IHVuZGVmaW5lZCA9XG4gICAgICAgICAgICAgICAgICAgIHRoaXMubG9ja3NbZGVzY3JpcHRpb25dLnNoaWZ0KClcblxuICAgICAgICAgICAgICAgIGlmIChjYWxsYmFjayA9PT0gdW5kZWZpbmVkKVxuICAgICAgICAgICAgICAgICAgICBkZWxldGUgdGhpcy5sb2Nrc1tkZXNjcmlwdGlvbl1cbiAgICAgICAgICAgICAgICBlbHNlXG4gICAgICAgICAgICAgICAgICAgIHJldHVybiBhd2FpdCBjYWxsYmFjayhkZXNjcmlwdGlvbilcbiAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgcmV0dXJuXG4gICAgICAgIH1cblxuICAgICAgICBjb25zdCBjYWxsYmFjazogTG9ja0NhbGxiYWNrRnVuY3Rpb248VHlwZT4gfCB1bmRlZmluZWQgPVxuICAgICAgICAgICAgdGhpcy5sb2NrPy5zaGlmdCgpXG5cbiAgICAgICAgaWYgKGNhbGxiYWNrID09PSB1bmRlZmluZWQpXG4gICAgICAgICAgICB0aGlzLmxvY2sgPSB1bmRlZmluZWRcbiAgICAgICAgZWxzZVxuICAgICAgICAgICAgcmV0dXJuIGF3YWl0IGNhbGxiYWNrKClcbiAgICB9XG59XG5cbmV4cG9ydCBkZWZhdWx0IExvY2tcbiJdLCJtYXBwaW5ncyI6IkFBQUE7QUFDQTtBQUNBO0FBQ0EsWUFBWTs7QUFDWjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBYkE7QUFBQTtBQUFBO0FBQUE7QUFnQkE7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBLE9BQU8sTUFBTSxJQUFJLENBQTRCO0VBR3pDO0FBQ0o7QUFDQTtBQUNBO0FBQ0E7RUFDSSxXQUFXLENBQUMsS0FBaUQsR0FBRyxDQUFDLENBQUMsRUFBRTtJQUFBO0lBQUE7SUFDaEUsSUFBSSxDQUFDLEtBQUssR0FBRyxLQUFLO0VBQ3RCO0VBQ0E7QUFDSjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0VBQ0ksT0FBTyxDQUNILFdBQW9CLEVBQ3BCLFFBQXFDLEVBQ3JDLFdBQVcsR0FBRyxLQUFLLEVBQ047SUFDYixPQUFPLElBQUksT0FBTyxDQUFRLE9BQThCLElBQVc7TUFDL0QsTUFBTSxlQUEyQyxHQUM3QyxXQUFvQixJQUNHO1FBQ3ZCLElBQUksTUFBd0M7UUFDNUMsSUFBSSxRQUFRLEVBQ1IsTUFBTSxHQUFHLFFBQVEsQ0FBQyxXQUFXLENBQUM7UUFFbEMsTUFBTSxNQUFNLEdBQUksS0FBVyxJQUFXO1VBQ2xDLElBQUksV0FBVyxFQUNYLEtBQUssSUFBSSxDQUFDLE9BQU8sQ0FBQyxXQUFXLENBQUM7VUFFbEMsT0FBTyxDQUFDLEtBQUssQ0FBQztVQUVkLE9BQU8sS0FBSztRQUNoQixDQUFDO1FBRUQsSUFBSyxNQUFNLEVBQTJCLElBQUksRUFDdEMsT0FBUSxNQUFNLENBQW1CLElBQUksQ0FBQyxNQUFNLENBQUM7UUFFakQsTUFBTSxDQUFDLE1BQWMsQ0FBQztRQUV0QixPQUFPLE1BQU07TUFDakIsQ0FBQztNQUVELElBQUksV0FBVyxFQUFFO1FBQ2IsSUFBSSxNQUFNLENBQUMsU0FBUyxDQUFDLGNBQWMsQ0FBQyxJQUFJLENBQ3BDLElBQUksQ0FBQyxLQUFLLEVBQUUsV0FBVyxDQUFDLEVBRXhCLElBQUksQ0FBQyxLQUFLLENBQUMsV0FBVyxDQUFDLENBQUMsSUFBSSxDQUFDLGVBQWUsQ0FBQyxNQUM1QztVQUNELElBQUksQ0FBQyxLQUFLLENBQUMsV0FBVyxDQUFDLEdBQUcsRUFBRTtVQUU1QixLQUFLLGVBQWUsQ0FBQyxXQUFXLENBQUM7UUFDckM7UUFFQTtNQUNKO01BRUEsSUFBSSxJQUFJLENBQUMsSUFBSSxFQUNULElBQUksQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLGVBQWUsQ0FBQyxNQUM5QjtRQUNELElBQUksQ0FBQyxJQUFJLEdBQUcsRUFBRTtRQUVkLEtBQUssZUFBZSxDQUFDLFdBQVcsQ0FBQztNQUNyQztJQUNKLENBQUMsQ0FBQztFQUNOO0VBQ0E7QUFDSjtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtFQUNJLE1BQU0sT0FBTyxDQUFDLFdBQW9CLEVBQTZCO0lBQzNELElBQUksV0FBVyxFQUFFO01BQ2IsSUFBSSxNQUFNLENBQUMsU0FBUyxDQUFDLGNBQWMsQ0FBQyxJQUFJLENBQ3BDLElBQUksQ0FBQyxLQUFLLEVBQUUsV0FDaEIsQ0FBQyxFQUFFO1FBQ0MsTUFBTSxRQUFnRCxHQUNsRCxJQUFJLENBQUMsS0FBSyxDQUFDLFdBQVcsQ0FBQyxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBRW5DLElBQUksUUFBUSxLQUFLLFNBQVMsRUFDdEIsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLFdBQVcsQ0FBQyxNQUU5QixPQUFPLE1BQU0sUUFBUSxDQUFDLFdBQVcsQ0FBQztNQUMxQztNQUVBO0lBQ0o7SUFFQSxNQUFNLFFBQWdELEdBQ2xELElBQUksQ0FBQyxJQUFJLEVBQUUsS0FBSyxDQUFDLENBQUM7SUFFdEIsSUFBSSxRQUFRLEtBQUssU0FBUyxFQUN0QixJQUFJLENBQUMsSUFBSSxHQUFHLFNBQVMsTUFFckIsT0FBTyxNQUFNLFFBQVEsQ0FBQyxDQUFDO0VBQy9CO0FBQ0o7QUFFQSxlQUFlLElBQUkiLCJpZ25vcmVMaXN0IjpbXX0=
|
|
61
|
+
*/var Lock=/*#__PURE__*/function(){/**
|
|
62
|
+
* Initializes locks.
|
|
63
|
+
* @param locks - Mapping of a lock description to callbacks for calling
|
|
64
|
+
* when given lock should be released.
|
|
65
|
+
*/function Lock(locks){if(locks===void 0){locks={}}_classCallCheck(this,Lock);_defineProperty(this,"lock",void 0);_defineProperty(this,"locks",void 0);this.locks=locks}/**
|
|
66
|
+
* Calling this method introduces a starting point for a critical area with
|
|
67
|
+
* potential race conditions. The area will be bind to given description
|
|
68
|
+
* string. So don't use same names for different areas.
|
|
69
|
+
* @param description - A short string describing the critical areas
|
|
70
|
+
* properties.
|
|
71
|
+
* @param callback - A procedure which should only be executed if the
|
|
72
|
+
* interpreter isn't in the given critical area. The lock description
|
|
73
|
+
* string will be given to the callback function.
|
|
74
|
+
* @param autoRelease - Release the lock after execution of given callback.
|
|
75
|
+
* @returns Returns a promise which will be resolved after releasing lock.
|
|
76
|
+
*/return _createClass(Lock,[{key:"acquire",value:function acquire(description,callback,autoRelease){var _this=this;if(autoRelease===void 0){autoRelease=false}return new Promise(function(resolve){var wrappedCallback=function wrappedCallback(description){var _result;var result;if(callback)result=callback(description);var finish=function finish(value){if(autoRelease)void _this.release(description);resolve(value);return value};if((_result=result)!==null&&_result!==void 0&&_result.then)return result.then(finish);finish(result);return result};if(description){if(Object.prototype.hasOwnProperty.call(_this.locks,description))_this.locks[description].push(wrappedCallback);else{_this.locks[description]=[];void wrappedCallback(description)}return}if(_this.lock)_this.lock.push(wrappedCallback);else{_this.lock=[];void wrappedCallback(description)}})}/**
|
|
77
|
+
* Calling this method causes the given critical area to be finished and
|
|
78
|
+
* all functions given to "acquire()" will be executed in right order.
|
|
79
|
+
* @param description - A short string describing the critical areas
|
|
80
|
+
* properties.
|
|
81
|
+
* @returns Returns the return (maybe promise resolved) value of the
|
|
82
|
+
* callback given to the "acquire" method.
|
|
83
|
+
*/},{key:"release",value:(function(){var _release=_asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee(description){var _this$lock;var _callback,callback;return _regenerator().w(function(_context){while(1)switch(_context.n){case 0:if(!description){_context.n=4;break}if(!Object.prototype.hasOwnProperty.call(this.locks,description)){_context.n=3;break}_callback=this.locks[description].shift();if(!(_callback===undefined)){_context.n=1;break}delete this.locks[description];_context.n=3;break;case 1:_context.n=2;return _callback(description);case 2:return _context.a(2,_context.v);case 3:return _context.a(2);case 4:callback=(_this$lock=this.lock)===null||_this$lock===void 0?void 0:_this$lock.shift();if(!(callback===undefined)){_context.n=5;break}this.lock=undefined;_context.n=7;break;case 5:_context.n=6;return callback();case 6:return _context.a(2,_context.v);case 7:return _context.a(2)}},_callee,this)}));function release(_x){return _release.apply(this,arguments)}return release}())}])}();/* harmony default export */ __webpack_exports__.A = (Lock);
|
|
84
|
+
var __webpack_exports__Lock = __webpack_exports__.c;
|
|
85
|
+
var __webpack_exports__default = __webpack_exports__.A;
|
|
86
|
+
export { __webpack_exports__Lock as Lock, __webpack_exports__default as default };
|
package/dist/Logger.d.ts
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import type { LoggerOptions, Mapping } from './type';
|
|
2
|
+
export declare const LEVELS: readonly ["error", "critical", "warn", "info", "debug"];
|
|
3
|
+
export declare const LEVELS_COLOR: ("\u001B[0;34m" | "\u001B[32m" | "\u001B[35m" | "\u001B[31m" | "\u001B[33m")[];
|
|
4
|
+
export type Level = typeof LEVELS[number];
|
|
5
|
+
/**
|
|
6
|
+
* This plugin provides such interface logic like generic controller logic for
|
|
7
|
+
* integrating plugins into $, mutual exclusion for dependent gui elements,
|
|
8
|
+
* logging additional string, array or function handling. A set of helper
|
|
9
|
+
* functions to parse option objects dom trees or handle events is also
|
|
10
|
+
* provided.
|
|
11
|
+
* @property level - Logging level.
|
|
12
|
+
* @property name - Logger description.
|
|
13
|
+
*/
|
|
14
|
+
export declare class Logger {
|
|
15
|
+
static defaultLevel: Level;
|
|
16
|
+
static defaultName: string;
|
|
17
|
+
static selfClass: typeof Logger;
|
|
18
|
+
static instances: Mapping<Logger>;
|
|
19
|
+
static runtimeVersion: number;
|
|
20
|
+
/**
|
|
21
|
+
* Configures all logger instances.
|
|
22
|
+
* @param options - Options to set.
|
|
23
|
+
*/
|
|
24
|
+
static configureAllInstances(options?: Partial<LoggerOptions>): void;
|
|
25
|
+
level: Level;
|
|
26
|
+
name: string;
|
|
27
|
+
/**
|
|
28
|
+
* Initializes logger.
|
|
29
|
+
* @param options - Options to set.
|
|
30
|
+
*/
|
|
31
|
+
constructor(options?: Partial<LoggerOptions>);
|
|
32
|
+
/**
|
|
33
|
+
* Configures logger.
|
|
34
|
+
* @param options - Options to set.
|
|
35
|
+
* @param options.name - Description of the logger instance.
|
|
36
|
+
* @param options.level - Logging level to configure.
|
|
37
|
+
*/
|
|
38
|
+
configure({ name, level }: Partial<LoggerOptions>): void;
|
|
39
|
+
/**
|
|
40
|
+
* Shows the given object's representation in the browsers console if
|
|
41
|
+
* possible or in a standalone alert-window as fallback.
|
|
42
|
+
* @param object - Any object to print.
|
|
43
|
+
* @param force - If set to "true" given input will be shown independently
|
|
44
|
+
* of current logging configuration or interpreter's console
|
|
45
|
+
* implementation.
|
|
46
|
+
* @param avoidAnnotation - If set to "true" given input has no module or
|
|
47
|
+
* log level specific annotations.
|
|
48
|
+
* @param level - Description of log messages importance.
|
|
49
|
+
* @param additionalArguments - Additional values to print.
|
|
50
|
+
*/
|
|
51
|
+
log(object: unknown, force?: boolean, avoidAnnotation?: boolean, level?: Level, ...additionalArguments: Array<unknown>): void;
|
|
52
|
+
/**
|
|
53
|
+
* Wrapper method for the native console method usually provided by
|
|
54
|
+
* interpreter.
|
|
55
|
+
* @param object - Any object to print.
|
|
56
|
+
* @param additionalArguments - Additional arguments are used for string
|
|
57
|
+
* formatting.
|
|
58
|
+
*/
|
|
59
|
+
info(object: unknown, ...additionalArguments: Array<unknown>): void;
|
|
60
|
+
/**
|
|
61
|
+
* Wrapper method for the native console method usually provided by
|
|
62
|
+
* interpreter.
|
|
63
|
+
* @param object - Any object to print.
|
|
64
|
+
* @param additionalArguments - Additional arguments are used for string
|
|
65
|
+
* formatting.
|
|
66
|
+
*/
|
|
67
|
+
debug(object: unknown, ...additionalArguments: Array<unknown>): void;
|
|
68
|
+
/**
|
|
69
|
+
* Wrapper method for the native console method usually provided by
|
|
70
|
+
* interpreter.
|
|
71
|
+
* @param object - Any object to print.
|
|
72
|
+
* @param additionalArguments - Additional arguments are used for string
|
|
73
|
+
* formatting.
|
|
74
|
+
*/
|
|
75
|
+
error(object: unknown, ...additionalArguments: Array<unknown>): void;
|
|
76
|
+
/**
|
|
77
|
+
* Wrapper method for the native console method usually provided by
|
|
78
|
+
* interpreter.
|
|
79
|
+
* @param object - Any object to print.
|
|
80
|
+
* @param additionalArguments - Additional arguments are used for string
|
|
81
|
+
* formatting.
|
|
82
|
+
*/
|
|
83
|
+
critical(object: unknown, ...additionalArguments: Array<unknown>): void;
|
|
84
|
+
/**
|
|
85
|
+
* Wrapper method for the native console method usually provided by
|
|
86
|
+
* interpreter.
|
|
87
|
+
* @param object - Any object to print.
|
|
88
|
+
* @param additionalArguments - Additional arguments are used for string
|
|
89
|
+
* formatting.
|
|
90
|
+
*/
|
|
91
|
+
warn(object: unknown, ...additionalArguments: Array<unknown>): void;
|
|
92
|
+
/**
|
|
93
|
+
* Dumps a given object in a human-readable format.
|
|
94
|
+
* @param object - Any object to show.
|
|
95
|
+
* @param level - Number of levels to dig into given object recursively.
|
|
96
|
+
* @param currentLevel - Maximal number of recursive function calls to
|
|
97
|
+
* represent given object.
|
|
98
|
+
* @returns Returns the serialized version of given object.
|
|
99
|
+
*/
|
|
100
|
+
static show(object: unknown, level?: number, currentLevel?: number): string;
|
|
101
|
+
}
|
|
102
|
+
export default Logger;
|