core-decorators
Advanced tools
Comparing version 0.0.5 to 0.0.6
{ | ||
"name": "core-decorators", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"description": "Library of ES7 decorators inspired by languages that come with built-ins like @override, @deprecated, etc", | ||
@@ -5,0 +5,0 @@ "main": "src/core-decorators.js", |
@@ -20,3 +20,3 @@ import { decorate } from './private/utils'; | ||
console.warn(`DEPRECATION ${methodSignature}: ${msg}`); | ||
return descriptor.value(...arguments); | ||
return descriptor.value.apply(this, arguments); | ||
} | ||
@@ -23,0 +23,0 @@ }; |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
11910
0