remove node_modules and .gitignore them
This commit is contained in:
-18
@@ -1,18 +0,0 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
import { LogicError } from "./LogicError";
|
||||
/**
|
||||
* Domain Error.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
export declare class DomainError extends LogicError {
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param message The error messgae.
|
||||
*/
|
||||
constructor(message: string);
|
||||
}
|
||||
-44
@@ -1,44 +0,0 @@
|
||||
"use strict";
|
||||
var __extends = (this && this.__extends) || (function () {
|
||||
var extendStatics = function (d, b) {
|
||||
extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
return extendStatics(d, b);
|
||||
};
|
||||
return function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.DomainError = void 0;
|
||||
//================================================================
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
//================================================================
|
||||
var LogicError_1 = require("./LogicError");
|
||||
/**
|
||||
* Domain Error.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
var DomainError = /** @class */ (function (_super) {
|
||||
__extends(DomainError, _super);
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param message The error messgae.
|
||||
*/
|
||||
function DomainError(message) {
|
||||
return _super.call(this, message) || this;
|
||||
}
|
||||
return DomainError;
|
||||
}(LogicError_1.LogicError));
|
||||
exports.DomainError = DomainError;
|
||||
//# sourceMappingURL=DomainError.js.map
|
||||
-51
@@ -1,51 +0,0 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
import { ErrorCode } from "./ErrorCode";
|
||||
import { ErrorCondition } from "./ErrorCondition";
|
||||
/**
|
||||
* Error category.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
export declare abstract class ErrorCategory {
|
||||
/**
|
||||
* Default Constructor.
|
||||
*/
|
||||
constructor();
|
||||
/**
|
||||
* Get category name.
|
||||
*/
|
||||
abstract name(): string;
|
||||
/**
|
||||
* Get error message.
|
||||
*
|
||||
* @param val Identifier of an error condition.
|
||||
* @return The error message.
|
||||
*/
|
||||
abstract message(val: number): string;
|
||||
/**
|
||||
* Get default error condition.
|
||||
*
|
||||
* @param val Identifier of an error condition.
|
||||
* @return The error condition.
|
||||
*/
|
||||
default_error_condition(val: number): ErrorCondition;
|
||||
/**
|
||||
* Test equivalence.
|
||||
*
|
||||
* @param val_code Identifier of an error code.
|
||||
* @param cond An error condition.
|
||||
* @return Whether equivalent or not.
|
||||
*/
|
||||
equivalent(val_code: number, cond: ErrorCondition): boolean;
|
||||
/**
|
||||
* Test equivalence.
|
||||
*
|
||||
* @param code An error code.
|
||||
* @param val_cond Identifier of an error condition.
|
||||
* @return Whether equivalent or not.
|
||||
*/
|
||||
equivalent(code: ErrorCode, val_cond: number): boolean;
|
||||
}
|
||||
-51
@@ -1,51 +0,0 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ErrorCategory = void 0;
|
||||
var ErrorCondition_1 = require("./ErrorCondition");
|
||||
var comparators_1 = require("../functional/comparators");
|
||||
/**
|
||||
* Error category.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
var ErrorCategory = /** @class */ (function () {
|
||||
/* ---------------------------------------------------------
|
||||
CONSTRUCTORS
|
||||
--------------------------------------------------------- */
|
||||
/**
|
||||
* Default Constructor.
|
||||
*/
|
||||
function ErrorCategory() {
|
||||
}
|
||||
/* ---------------------------------------------------------
|
||||
OPERATORS
|
||||
--------------------------------------------------------- */
|
||||
/**
|
||||
* Get default error condition.
|
||||
*
|
||||
* @param val Identifier of an error condition.
|
||||
* @return The error condition.
|
||||
*/
|
||||
ErrorCategory.prototype.default_error_condition = function (val) {
|
||||
return new ErrorCondition_1.ErrorCondition(val, this);
|
||||
};
|
||||
ErrorCategory.prototype.equivalent = function () {
|
||||
var args = [];
|
||||
for (var _i = 0; _i < arguments.length; _i++) {
|
||||
args[_i] = arguments[_i];
|
||||
}
|
||||
if (args[1] instanceof ErrorCondition_1.ErrorCondition) {
|
||||
var val_code = args[0];
|
||||
var cond = args[1];
|
||||
return (0, comparators_1.equal_to)(this.default_error_condition(val_code), cond);
|
||||
}
|
||||
else {
|
||||
var code = args[0];
|
||||
var valcond = args[1];
|
||||
return (0, comparators_1.equal_to)(this, code.category()) && code.value() === valcond;
|
||||
}
|
||||
};
|
||||
return ErrorCategory;
|
||||
}());
|
||||
exports.ErrorCategory = ErrorCategory;
|
||||
//# sourceMappingURL=ErrorCategory.js.map
|
||||
-31
@@ -1,31 +0,0 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
import { ErrorInstance } from "../internal/exception/ErrorInstance";
|
||||
import { ErrorCategory } from "./ErrorCategory";
|
||||
import { ErrorCondition } from "./ErrorCondition";
|
||||
/**
|
||||
* Error code.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
export declare class ErrorCode extends ErrorInstance {
|
||||
/**
|
||||
* Default Constructor.
|
||||
*/
|
||||
constructor();
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param val Identifier of an error instance.
|
||||
* @param category An error category instance.
|
||||
*/
|
||||
constructor(val: number, category: ErrorCategory);
|
||||
/**
|
||||
* Get default error condition.
|
||||
*
|
||||
* @return The default error condition object.
|
||||
*/
|
||||
default_error_condition(): ErrorCondition;
|
||||
}
|
||||
-49
@@ -1,49 +0,0 @@
|
||||
"use strict";
|
||||
var __extends = (this && this.__extends) || (function () {
|
||||
var extendStatics = function (d, b) {
|
||||
extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
return extendStatics(d, b);
|
||||
};
|
||||
return function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ErrorCode = void 0;
|
||||
//================================================================
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
//================================================================
|
||||
var ErrorInstance_1 = require("../internal/exception/ErrorInstance");
|
||||
/**
|
||||
* Error code.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
var ErrorCode = /** @class */ (function (_super) {
|
||||
__extends(ErrorCode, _super);
|
||||
function ErrorCode(val, category) {
|
||||
if (val === void 0) { val = 0; }
|
||||
if (category === void 0) { category = null; }
|
||||
return _super.call(this, val, category) || this;
|
||||
}
|
||||
/**
|
||||
* Get default error condition.
|
||||
*
|
||||
* @return The default error condition object.
|
||||
*/
|
||||
ErrorCode.prototype.default_error_condition = function () {
|
||||
return this.category_.default_error_condition(this.value_);
|
||||
};
|
||||
return ErrorCode;
|
||||
}(ErrorInstance_1.ErrorInstance));
|
||||
exports.ErrorCode = ErrorCode;
|
||||
//# sourceMappingURL=ErrorCode.js.map
|
||||
-24
@@ -1,24 +0,0 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
import { ErrorInstance } from "../internal/exception/ErrorInstance";
|
||||
import { ErrorCategory } from "./ErrorCategory";
|
||||
/**
|
||||
* Error condition.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
export declare class ErrorCondition extends ErrorInstance {
|
||||
/**
|
||||
* Default Constructor.
|
||||
*/
|
||||
constructor();
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param val Identifier of an error condition.
|
||||
* @param category An error category instance.
|
||||
*/
|
||||
constructor(val: number, category: ErrorCategory);
|
||||
}
|
||||
-41
@@ -1,41 +0,0 @@
|
||||
"use strict";
|
||||
var __extends = (this && this.__extends) || (function () {
|
||||
var extendStatics = function (d, b) {
|
||||
extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
return extendStatics(d, b);
|
||||
};
|
||||
return function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ErrorCondition = void 0;
|
||||
//================================================================
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
//================================================================
|
||||
var ErrorInstance_1 = require("../internal/exception/ErrorInstance");
|
||||
/**
|
||||
* Error condition.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
var ErrorCondition = /** @class */ (function (_super) {
|
||||
__extends(ErrorCondition, _super);
|
||||
function ErrorCondition(val, category) {
|
||||
if (val === void 0) { val = 0; }
|
||||
if (category === void 0) { category = null; }
|
||||
return _super.call(this, val, category) || this;
|
||||
}
|
||||
return ErrorCondition;
|
||||
}(ErrorInstance_1.ErrorInstance));
|
||||
exports.ErrorCondition = ErrorCondition;
|
||||
//# sourceMappingURL=ErrorCondition.js.map
|
||||
-35
@@ -1,35 +0,0 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
/**
|
||||
* Base Exception.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
export declare class Exception extends Error {
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param message The error messgae.
|
||||
*/
|
||||
constructor(message: string);
|
||||
/**
|
||||
* The error name.
|
||||
*/
|
||||
get name(): string;
|
||||
/**
|
||||
* Get error message.
|
||||
*
|
||||
* @return The error message.
|
||||
*/
|
||||
what(): string;
|
||||
/**
|
||||
* Native function for `JSON.stringify()`.
|
||||
*
|
||||
* The {@link Exception.toJSON} function returns only three properties; ({@link name}, {@link message} and {@link stack}). If you want to define a new sub-class extending the {@link Exception} and const the class to export additional props (or remove some props), override this {@link Exception.toJSON} method.
|
||||
*
|
||||
* @return An object for `JSON.stringify()`.
|
||||
*/
|
||||
toJSON(): object;
|
||||
}
|
||||
-89
@@ -1,89 +0,0 @@
|
||||
"use strict";
|
||||
var __extends = (this && this.__extends) || (function () {
|
||||
var extendStatics = function (d, b) {
|
||||
extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
return extendStatics(d, b);
|
||||
};
|
||||
return function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.Exception = void 0;
|
||||
//================================================================
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
//================================================================
|
||||
/**
|
||||
* Base Exception.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
var Exception = /** @class */ (function (_super) {
|
||||
__extends(Exception, _super);
|
||||
/* ---------------------------------------------------------
|
||||
CONSTRUCTOR
|
||||
--------------------------------------------------------- */
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param message The error messgae.
|
||||
*/
|
||||
function Exception(message) {
|
||||
var _newTarget = this.constructor;
|
||||
var _this = _super.call(this, message) || this;
|
||||
// INHERITANCE POLYFILL
|
||||
var proto = _newTarget.prototype;
|
||||
if (Object.setPrototypeOf)
|
||||
Object.setPrototypeOf(_this, proto);
|
||||
else
|
||||
_this.__proto__ = proto;
|
||||
return _this;
|
||||
}
|
||||
Object.defineProperty(Exception.prototype, "name", {
|
||||
/* ---------------------------------------------------------
|
||||
ACCESSORS
|
||||
--------------------------------------------------------- */
|
||||
/**
|
||||
* The error name.
|
||||
*/
|
||||
get: function () {
|
||||
return this.constructor.name;
|
||||
},
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
/**
|
||||
* Get error message.
|
||||
*
|
||||
* @return The error message.
|
||||
*/
|
||||
Exception.prototype.what = function () {
|
||||
return this.message;
|
||||
};
|
||||
/**
|
||||
* Native function for `JSON.stringify()`.
|
||||
*
|
||||
* The {@link Exception.toJSON} function returns only three properties; ({@link name}, {@link message} and {@link stack}). If you want to define a new sub-class extending the {@link Exception} and const the class to export additional props (or remove some props), override this {@link Exception.toJSON} method.
|
||||
*
|
||||
* @return An object for `JSON.stringify()`.
|
||||
*/
|
||||
Exception.prototype.toJSON = function () {
|
||||
return {
|
||||
name: this.name,
|
||||
message: this.message,
|
||||
stack: this.stack,
|
||||
};
|
||||
};
|
||||
return Exception;
|
||||
}(Error));
|
||||
exports.Exception = Exception;
|
||||
//# sourceMappingURL=Exception.js.map
|
||||
-18
@@ -1,18 +0,0 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
import { LogicError } from "./LogicError";
|
||||
/**
|
||||
* Invalid Argument Exception.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
export declare class InvalidArgument extends LogicError {
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param message The error messgae.
|
||||
*/
|
||||
constructor(message: string);
|
||||
}
|
||||
-44
@@ -1,44 +0,0 @@
|
||||
"use strict";
|
||||
var __extends = (this && this.__extends) || (function () {
|
||||
var extendStatics = function (d, b) {
|
||||
extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
return extendStatics(d, b);
|
||||
};
|
||||
return function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.InvalidArgument = void 0;
|
||||
//================================================================
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
//================================================================
|
||||
var LogicError_1 = require("./LogicError");
|
||||
/**
|
||||
* Invalid Argument Exception.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
var InvalidArgument = /** @class */ (function (_super) {
|
||||
__extends(InvalidArgument, _super);
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param message The error messgae.
|
||||
*/
|
||||
function InvalidArgument(message) {
|
||||
return _super.call(this, message) || this;
|
||||
}
|
||||
return InvalidArgument;
|
||||
}(LogicError_1.LogicError));
|
||||
exports.InvalidArgument = InvalidArgument;
|
||||
//# sourceMappingURL=InvalidArgument.js.map
|
||||
-18
@@ -1,18 +0,0 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
import { LogicError } from "./LogicError";
|
||||
/**
|
||||
* Length Error.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
export declare class LengthError extends LogicError {
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param message The error messgae.
|
||||
*/
|
||||
constructor(message: string);
|
||||
}
|
||||
-44
@@ -1,44 +0,0 @@
|
||||
"use strict";
|
||||
var __extends = (this && this.__extends) || (function () {
|
||||
var extendStatics = function (d, b) {
|
||||
extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
return extendStatics(d, b);
|
||||
};
|
||||
return function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.LengthError = void 0;
|
||||
//================================================================
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
//================================================================
|
||||
var LogicError_1 = require("./LogicError");
|
||||
/**
|
||||
* Length Error.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
var LengthError = /** @class */ (function (_super) {
|
||||
__extends(LengthError, _super);
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param message The error messgae.
|
||||
*/
|
||||
function LengthError(message) {
|
||||
return _super.call(this, message) || this;
|
||||
}
|
||||
return LengthError;
|
||||
}(LogicError_1.LogicError));
|
||||
exports.LengthError = LengthError;
|
||||
//# sourceMappingURL=LengthError.js.map
|
||||
-18
@@ -1,18 +0,0 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
import { Exception } from "./Exception";
|
||||
/**
|
||||
* Logic Error.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
export declare class LogicError extends Exception {
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param message The error messgae.
|
||||
*/
|
||||
constructor(message: string);
|
||||
}
|
||||
-44
@@ -1,44 +0,0 @@
|
||||
"use strict";
|
||||
var __extends = (this && this.__extends) || (function () {
|
||||
var extendStatics = function (d, b) {
|
||||
extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
return extendStatics(d, b);
|
||||
};
|
||||
return function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.LogicError = void 0;
|
||||
//================================================================
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
//================================================================
|
||||
var Exception_1 = require("./Exception");
|
||||
/**
|
||||
* Logic Error.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
var LogicError = /** @class */ (function (_super) {
|
||||
__extends(LogicError, _super);
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param message The error messgae.
|
||||
*/
|
||||
function LogicError(message) {
|
||||
return _super.call(this, message) || this;
|
||||
}
|
||||
return LogicError;
|
||||
}(Exception_1.Exception));
|
||||
exports.LogicError = LogicError;
|
||||
//# sourceMappingURL=LogicError.js.map
|
||||
-18
@@ -1,18 +0,0 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
import { LogicError } from "./LogicError";
|
||||
/**
|
||||
* Out-of-range Exception.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
export declare class OutOfRange extends LogicError {
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param message The error messgae.
|
||||
*/
|
||||
constructor(message: string);
|
||||
}
|
||||
-44
@@ -1,44 +0,0 @@
|
||||
"use strict";
|
||||
var __extends = (this && this.__extends) || (function () {
|
||||
var extendStatics = function (d, b) {
|
||||
extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
return extendStatics(d, b);
|
||||
};
|
||||
return function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.OutOfRange = void 0;
|
||||
//================================================================
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
//================================================================
|
||||
var LogicError_1 = require("./LogicError");
|
||||
/**
|
||||
* Out-of-range Exception.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
var OutOfRange = /** @class */ (function (_super) {
|
||||
__extends(OutOfRange, _super);
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param message The error messgae.
|
||||
*/
|
||||
function OutOfRange(message) {
|
||||
return _super.call(this, message) || this;
|
||||
}
|
||||
return OutOfRange;
|
||||
}(LogicError_1.LogicError));
|
||||
exports.OutOfRange = OutOfRange;
|
||||
//# sourceMappingURL=OutOfRange.js.map
|
||||
-18
@@ -1,18 +0,0 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
import { RuntimeError } from "./RuntimeError";
|
||||
/**
|
||||
* Overflow Error.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
export declare class OverflowError extends RuntimeError {
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param message The error messgae.
|
||||
*/
|
||||
constructor(message: string);
|
||||
}
|
||||
-44
@@ -1,44 +0,0 @@
|
||||
"use strict";
|
||||
var __extends = (this && this.__extends) || (function () {
|
||||
var extendStatics = function (d, b) {
|
||||
extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
return extendStatics(d, b);
|
||||
};
|
||||
return function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.OverflowError = void 0;
|
||||
//================================================================
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
//================================================================
|
||||
var RuntimeError_1 = require("./RuntimeError");
|
||||
/**
|
||||
* Overflow Error.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
var OverflowError = /** @class */ (function (_super) {
|
||||
__extends(OverflowError, _super);
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param message The error messgae.
|
||||
*/
|
||||
function OverflowError(message) {
|
||||
return _super.call(this, message) || this;
|
||||
}
|
||||
return OverflowError;
|
||||
}(RuntimeError_1.RuntimeError));
|
||||
exports.OverflowError = OverflowError;
|
||||
//# sourceMappingURL=OverflowError.js.map
|
||||
-18
@@ -1,18 +0,0 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
import { RuntimeError } from "./RuntimeError";
|
||||
/**
|
||||
* Range Error.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
export declare class RangeError extends RuntimeError {
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param message The error messgae.
|
||||
*/
|
||||
constructor(message: string);
|
||||
}
|
||||
-44
@@ -1,44 +0,0 @@
|
||||
"use strict";
|
||||
var __extends = (this && this.__extends) || (function () {
|
||||
var extendStatics = function (d, b) {
|
||||
extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
return extendStatics(d, b);
|
||||
};
|
||||
return function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.RangeError = void 0;
|
||||
//================================================================
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
//================================================================
|
||||
var RuntimeError_1 = require("./RuntimeError");
|
||||
/**
|
||||
* Range Error.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
var RangeError = /** @class */ (function (_super) {
|
||||
__extends(RangeError, _super);
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param message The error messgae.
|
||||
*/
|
||||
function RangeError(message) {
|
||||
return _super.call(this, message) || this;
|
||||
}
|
||||
return RangeError;
|
||||
}(RuntimeError_1.RuntimeError));
|
||||
exports.RangeError = RangeError;
|
||||
//# sourceMappingURL=RangeError.js.map
|
||||
-18
@@ -1,18 +0,0 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
import { Exception } from "./Exception";
|
||||
/**
|
||||
* Runtime Error.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
export declare class RuntimeError extends Exception {
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param message The error messgae.
|
||||
*/
|
||||
constructor(message: string);
|
||||
}
|
||||
-44
@@ -1,44 +0,0 @@
|
||||
"use strict";
|
||||
var __extends = (this && this.__extends) || (function () {
|
||||
var extendStatics = function (d, b) {
|
||||
extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
return extendStatics(d, b);
|
||||
};
|
||||
return function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.RuntimeError = void 0;
|
||||
//================================================================
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
//================================================================
|
||||
var Exception_1 = require("./Exception");
|
||||
/**
|
||||
* Runtime Error.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
var RuntimeError = /** @class */ (function (_super) {
|
||||
__extends(RuntimeError, _super);
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param message The error messgae.
|
||||
*/
|
||||
function RuntimeError(message) {
|
||||
return _super.call(this, message) || this;
|
||||
}
|
||||
return RuntimeError;
|
||||
}(Exception_1.Exception));
|
||||
exports.RuntimeError = RuntimeError;
|
||||
//# sourceMappingURL=RuntimeError.js.map
|
||||
-40
@@ -1,40 +0,0 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
import { RuntimeError } from "./RuntimeError";
|
||||
import { ErrorCode } from "./ErrorCode";
|
||||
import { ErrorCategory } from "./ErrorCategory";
|
||||
/**
|
||||
* System Error.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
export declare class SystemError extends RuntimeError {
|
||||
protected code_: ErrorCode;
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param code An error code.
|
||||
* @param message A detailed error message.
|
||||
*/
|
||||
constructor(code: ErrorCode, message?: string);
|
||||
/**
|
||||
* Construct from references.
|
||||
*
|
||||
* @param val Identnfier of an error code in *category*.
|
||||
* @param category An error category.
|
||||
* @param message A detailed error message.
|
||||
*/
|
||||
constructor(val: number, category: ErrorCategory, message?: string);
|
||||
/**
|
||||
* Get error code.
|
||||
*
|
||||
* @return The error code.
|
||||
*/
|
||||
code(): ErrorCode;
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
toJSON(): object;
|
||||
}
|
||||
-83
@@ -1,83 +0,0 @@
|
||||
"use strict";
|
||||
var __extends = (this && this.__extends) || (function () {
|
||||
var extendStatics = function (d, b) {
|
||||
extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
return extendStatics(d, b);
|
||||
};
|
||||
return function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
})();
|
||||
var __assign = (this && this.__assign) || function () {
|
||||
__assign = Object.assign || function(t) {
|
||||
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
||||
s = arguments[i];
|
||||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
||||
t[p] = s[p];
|
||||
}
|
||||
return t;
|
||||
};
|
||||
return __assign.apply(this, arguments);
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.SystemError = void 0;
|
||||
//================================================================
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
//================================================================
|
||||
var RuntimeError_1 = require("./RuntimeError");
|
||||
var ErrorCode_1 = require("./ErrorCode");
|
||||
/**
|
||||
* System Error.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
var SystemError = /** @class */ (function (_super) {
|
||||
__extends(SystemError, _super);
|
||||
function SystemError() {
|
||||
var args = [];
|
||||
for (var _i = 0; _i < arguments.length; _i++) {
|
||||
args[_i] = arguments[_i];
|
||||
}
|
||||
var _this = _super.call(this, "") || this;
|
||||
if (args.length >= 2 && typeof args[0].valueOf() === "number") {
|
||||
var val = args[0];
|
||||
var category = args[1];
|
||||
_this.code_ = new ErrorCode_1.ErrorCode(val, category);
|
||||
_this.message = args[2];
|
||||
}
|
||||
else {
|
||||
_this.code_ = args[0];
|
||||
_this.message = args[1];
|
||||
}
|
||||
return _this;
|
||||
}
|
||||
/* ---------------------------------------------------------
|
||||
ACCESSORS
|
||||
--------------------------------------------------------- */
|
||||
/**
|
||||
* Get error code.
|
||||
*
|
||||
* @return The error code.
|
||||
*/
|
||||
SystemError.prototype.code = function () {
|
||||
return this.code_;
|
||||
};
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
SystemError.prototype.toJSON = function () {
|
||||
return __assign(__assign({}, _super.prototype.toJSON.call(this)), { code: this.code_.toJSON() });
|
||||
};
|
||||
return SystemError;
|
||||
}(RuntimeError_1.RuntimeError));
|
||||
exports.SystemError = SystemError;
|
||||
//# sourceMappingURL=SystemError.js.map
|
||||
-18
@@ -1,18 +0,0 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
import { RuntimeError } from "./RuntimeError";
|
||||
/**
|
||||
* Underflow Error.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
export declare class UnderflowError extends RuntimeError {
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param message The error messgae.
|
||||
*/
|
||||
constructor(message: string);
|
||||
}
|
||||
-44
@@ -1,44 +0,0 @@
|
||||
"use strict";
|
||||
var __extends = (this && this.__extends) || (function () {
|
||||
var extendStatics = function (d, b) {
|
||||
extendStatics = Object.setPrototypeOf ||
|
||||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
||||
return extendStatics(d, b);
|
||||
};
|
||||
return function (d, b) {
|
||||
if (typeof b !== "function" && b !== null)
|
||||
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
||||
extendStatics(d, b);
|
||||
function __() { this.constructor = d; }
|
||||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||||
};
|
||||
})();
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.UnderflowError = void 0;
|
||||
//================================================================
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
//================================================================
|
||||
var RuntimeError_1 = require("./RuntimeError");
|
||||
/**
|
||||
* Underflow Error.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
var UnderflowError = /** @class */ (function (_super) {
|
||||
__extends(UnderflowError, _super);
|
||||
/**
|
||||
* Initializer Constructor.
|
||||
*
|
||||
* @param message The error messgae.
|
||||
*/
|
||||
function UnderflowError(message) {
|
||||
return _super.call(this, message) || this;
|
||||
}
|
||||
return UnderflowError;
|
||||
}(RuntimeError_1.RuntimeError));
|
||||
exports.UnderflowError = UnderflowError;
|
||||
//# sourceMappingURL=UnderflowError.js.map
|
||||
-16
@@ -1,16 +0,0 @@
|
||||
/**
|
||||
* Terminate program.
|
||||
*/
|
||||
export declare function terminate(): void;
|
||||
/**
|
||||
* Set terminate handler.
|
||||
*
|
||||
* @param func The terminate handler.
|
||||
*/
|
||||
export declare function set_terminate(func: () => void): void;
|
||||
/**
|
||||
* Get terminate handler.
|
||||
*
|
||||
* @return The terminate handler.
|
||||
*/
|
||||
export declare function get_terminate(): (() => void) | undefined;
|
||||
-73
@@ -1,73 +0,0 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.get_terminate = exports.set_terminate = exports.terminate = void 0;
|
||||
//================================================================
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
//================================================================
|
||||
var node_1 = require("../utility/node");
|
||||
var Global_1 = require("../internal/Global");
|
||||
/**
|
||||
* Terminate program.
|
||||
*/
|
||||
function terminate() {
|
||||
if ((0, node_1.is_node)() === true)
|
||||
global.process.exit();
|
||||
else {
|
||||
if (typeof window !== "undefined" && self.open instanceof Function)
|
||||
self.open("", "_self", "");
|
||||
self.close();
|
||||
}
|
||||
}
|
||||
exports.terminate = terminate;
|
||||
/**
|
||||
* Set terminate handler.
|
||||
*
|
||||
* @param func The terminate handler.
|
||||
*/
|
||||
function set_terminate(func) {
|
||||
//----
|
||||
// PREPARE EVENT LISTENER
|
||||
//----
|
||||
var type;
|
||||
var register;
|
||||
var eraser;
|
||||
if ((0, node_1.is_node)() === true) {
|
||||
type = "exit";
|
||||
register = function (type, listener) {
|
||||
return global.process.addListener(type, listener);
|
||||
};
|
||||
eraser = function (type, listener) {
|
||||
return global.process.removeListener(type, listener);
|
||||
};
|
||||
}
|
||||
else {
|
||||
// IF WORKER, THEN CANNOT ASSURE ACTIVATION.
|
||||
type = typeof window !== "undefined" ? "unload" : "close";
|
||||
register = function (type, listener) { return self.addEventListener(type, listener); };
|
||||
eraser = function (type, listener) { return self.removeEventListener(type, listener); };
|
||||
}
|
||||
//----
|
||||
// ENROLL THE LISTENER
|
||||
//----
|
||||
// ERASE ORDINARY
|
||||
if ((0, Global_1._Get_root)().__s_pTerminate_handler !== undefined)
|
||||
eraser(type, (0, Global_1._Get_root)().__s_pTerminate_handler);
|
||||
// DO REGISTER
|
||||
register("exit", func);
|
||||
// ARCHIVE THE LISTENER
|
||||
(0, Global_1._Get_root)().__s_pTerminate_handler = func;
|
||||
}
|
||||
exports.set_terminate = set_terminate;
|
||||
/**
|
||||
* Get terminate handler.
|
||||
*
|
||||
* @return The terminate handler.
|
||||
*/
|
||||
function get_terminate() {
|
||||
return (0, Global_1._Get_root)().__s_pTerminate_handler;
|
||||
}
|
||||
exports.get_terminate = get_terminate;
|
||||
//# sourceMappingURL=global.js.map
|
||||
-19
@@ -1,19 +0,0 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
export * from "./Exception";
|
||||
export * from "./LogicError";
|
||||
export * from "./DomainError";
|
||||
export * from "./InvalidArgument";
|
||||
export * from "./LengthError";
|
||||
export * from "./OutOfRange";
|
||||
export * from "./RuntimeError";
|
||||
export * from "./RangeError";
|
||||
export * from "./OverflowError";
|
||||
export * from "./UnderflowError";
|
||||
export * from "./SystemError";
|
||||
export * from "./ErrorCategory";
|
||||
export * from "./ErrorCode";
|
||||
export * from "./ErrorCondition";
|
||||
export * from "./global";
|
||||
-42
@@ -1,42 +0,0 @@
|
||||
"use strict";
|
||||
//================================================================
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
//================================================================
|
||||
// <exception>
|
||||
//
|
||||
// @reference http://www.cplusplus.com/reference/exception/
|
||||
// @author Jeongho Nam - https://github.com/samchon
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("./Exception"), exports);
|
||||
__exportStar(require("./LogicError"), exports);
|
||||
__exportStar(require("./DomainError"), exports);
|
||||
__exportStar(require("./InvalidArgument"), exports);
|
||||
__exportStar(require("./LengthError"), exports);
|
||||
__exportStar(require("./OutOfRange"), exports);
|
||||
__exportStar(require("./RuntimeError"), exports);
|
||||
__exportStar(require("./RangeError"), exports);
|
||||
__exportStar(require("./OverflowError"), exports);
|
||||
__exportStar(require("./UnderflowError"), exports);
|
||||
__exportStar(require("./SystemError"), exports);
|
||||
__exportStar(require("./ErrorCategory"), exports);
|
||||
__exportStar(require("./ErrorCode"), exports);
|
||||
__exportStar(require("./ErrorCondition"), exports);
|
||||
__exportStar(require("./global"), exports);
|
||||
//# sourceMappingURL=index.js.map
|
||||
Reference in New Issue
Block a user