simple-boot-core
Advanced tools
Comparing version 1.0.19 to 1.0.20
@@ -7,2 +7,3 @@ "use strict"; | ||
this.storage = new Set(); | ||
this.data = {}; | ||
} | ||
@@ -9,0 +10,0 @@ Object.defineProperty(class_1.prototype, "application", { |
{ | ||
"name": "simple-boot-core", | ||
"version": "1.0.19", | ||
"version": "1.0.20", | ||
"main": "SimpleApplication.js", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -8,11 +8,8 @@ "use strict"; | ||
FunctionUtils.getParameterNames = function (func, property) { | ||
var _a; | ||
var _a, _b; | ||
if (typeof func === 'object' && property) { | ||
func = func[property]; | ||
} | ||
return (_a = new RegExp('(?:' + func.name + '\\s*|^)\\s*\\((.*?)\\)') | ||
.exec(func.toString().replace(/\n/g, ''))[1] | ||
.replace(/\/\*.*?\*\//g, '') | ||
.replace(/ /g, '') | ||
.split(',')) !== null && _a !== void 0 ? _a : []; | ||
return (_b = (_a = new RegExp('(?:' + func.name + '\\s*|^)\\s*\\((.*?)\\)') | ||
.exec(func.toString().replace(/\n/g, ''))) === null || _a === void 0 ? void 0 : _a[1].replace(/\/\*.*?\*\//g, '').replace(/ /g, '').split(',')) !== null && _b !== void 0 ? _b : []; | ||
}; | ||
@@ -19,0 +16,0 @@ FunctionUtils.eval = function (script, obj) { |
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
71415
1633