Comparing version 5.6.11 to 5.6.12
@@ -38,3 +38,21 @@ let Assigner = require('assign.js') | ||
return assigner.assign( conf1, conf2 ) | ||
}, | ||
intiser: function (...names) { | ||
for (let name of names) | ||
if (this.conf[name]) | ||
this.conf[name] = parseInt( this.conf[name] ) | ||
return this | ||
}, | ||
floatiser: function (...names) { | ||
for (let name of names) | ||
if (this.conf[name]) | ||
this.conf[name] = parseFloat( this.conf[name] ) | ||
return this | ||
}, | ||
booleaniser: function (...names) { | ||
for (let name of names) | ||
if (this.conf[name]) | ||
this.conf[name] = this.conf[name] === 'true' | ||
return this | ||
} | ||
} |
{ | ||
"name": "floca", | ||
"version": "5.6.11", | ||
"version": "5.6.12", | ||
"description": "Enterprise-grade microservice solution for NodeJS", | ||
@@ -32,5 +32,5 @@ "keywords": [ | ||
"connect": "^3.6.6", | ||
"connect-rest": "^3.0.23", | ||
"harcon": "^8.9.5", | ||
"harcon-radiation": "^8.9.7", | ||
"connect-rest": "^3.0.24", | ||
"harcon": "^8.9.6", | ||
"harcon-radiation": "^8.9.8", | ||
"isa.js": "^2.2.2", | ||
@@ -41,3 +41,3 @@ "jwt-simple": "^0.5.5", | ||
"morgan": "^1.9.1", | ||
"pino": "^5.6.3", | ||
"pino": "^5.7.0", | ||
"pino-pretty": "^2.2.1", | ||
@@ -51,3 +51,3 @@ "proback.js": "^2.1.7", | ||
"clerobee": "^0.9.7", | ||
"connect-rest": "^3.0.23" | ||
"connect-rest": "^3.0.24" | ||
}, | ||
@@ -54,0 +54,0 @@ "engines": { |
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
76884
788
Updatedconnect-rest@^3.0.24
Updatedharcon@^8.9.6
Updatedharcon-radiation@^8.9.8
Updatedpino@^5.7.0