koatty_core
Advanced tools
Comparing version 1.1.2 to 1.1.4
@@ -5,4 +5,14 @@ # Changelog | ||
### [1.1.4](https://github.com/koatty/koatty_core/compare/v1.1.2...v1.1.4) (2021-11-11) | ||
## [1.1.3](https://github.com/koatty/koatty_core/compare/v1.1.2...v1.1.3) (2021-11-11) | ||
# Changelog | ||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. | ||
### [1.1.2](https://github.com/koatty/koatty_core/compare/v1.1.1...v1.1.2) (2021-07-13) | ||
### 1.1.1 (2021-07-12) |
@@ -61,2 +61,7 @@ "use strict"; | ||
setMetaData(key, value) { | ||
// private | ||
if (key.startsWith("_")) { | ||
Helper.define(this, key, value); | ||
return this.handelMap; | ||
} | ||
return this.handelMap.set(key, value); | ||
@@ -71,2 +76,6 @@ } | ||
getMetaData(key) { | ||
// private | ||
if (key.startsWith("_")) { | ||
return Reflect.get(this, key); | ||
} | ||
return this.handelMap.get(key); | ||
@@ -73,0 +82,0 @@ } |
{ | ||
"name": "koatty_core", | ||
"version": "1.1.2", | ||
"version": "1.1.4", | ||
"description": "Koatty routing component, adapt to http1/2, websocket, gRPC.", | ||
@@ -5,0 +5,0 @@ "scripts": { |
Sorry, the diff of this file is not supported yet
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
1799358
638