Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

floca

Package Overview
Dependencies
Maintainers
2
Versions
229
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

floca - npm Package Compare versions

Comparing version 5.6.11 to 5.6.12

18

ConfigServices.js

@@ -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
}
}

12

package.json
{
"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": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc