@litert/core
Advanced tools
Comparing version 0.3.1 to 0.3.2
# Changes Logs | ||
## v0.3.2 | ||
- Added the default value of **origin** for Exception class. | ||
## v0.3.1 | ||
@@ -4,0 +8,0 @@ |
@@ -48,3 +48,3 @@ "use strict"; | ||
this._message = message; | ||
this._origin = origin; | ||
this._origin = origin || new Error("TRACE"); | ||
} | ||
@@ -51,0 +51,0 @@ toString() { |
{ | ||
"name": "@litert/core", | ||
"version": "0.3.1", | ||
"version": "0.3.2", | ||
"description": "The core of LiteRT.", | ||
@@ -10,3 +10,3 @@ "main": "dist/index.js", | ||
"build-only": "tsc -p .", | ||
"prepublish": "npm run build-only", | ||
"prepare": "npm run build-only", | ||
"lint": "tslint --project tslint.json ./sources/*.ts ./sources/**/*.ts" | ||
@@ -13,0 +13,0 @@ }, |
@@ -65,3 +65,3 @@ /* | ||
this._message = message; | ||
this._origin = origin; | ||
this._origin = origin || new Error("TRACE"); | ||
} | ||
@@ -68,0 +68,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
26094