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

node-ral

Package Overview
Dependencies
Maintainers
2
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-ral - npm Package Compare versions

Comparing version 0.18.3 to 0.18.4

14

lib/config.js

@@ -204,9 +204,11 @@ /**

var stats = fs.statSync(normalizedPath);
if (stats.isFile()) {
loadFile(normalizedPath);
if (fs.existsSync(normalizedPath)) {
var stats = fs.statSync(normalizedPath);
if (stats.isFile()) {
loadFile(normalizedPath);
}
else if (stats.isDirectory()) {
loadFolder(normalizedPath);
}
}
else if (stats.isDirectory()) {
loadFolder(normalizedPath);
}
return confFromFile;

@@ -213,0 +215,0 @@ }

{
"name": "node-ral",
"version": "0.18.3",
"version": "0.18.4",
"description": "a rpc client for node",

@@ -5,0 +5,0 @@ "main": "index.js",

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