Socket
Socket
Sign inDemoInstall

@smithy/shared-ini-file-loader

Package Overview
Dependencies
Maintainers
2
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@smithy/shared-ini-file-loader - npm Package Compare versions

Comparing version 2.0.7 to 2.0.8

5

dist-cjs/getHomeDir.js

@@ -6,7 +6,6 @@ "use strict";

const path_1 = require("path");
const process_1 = require("process");
const homeDirCache = {};
const getHomeDirCacheKey = () => {
if (process_1.geteuid) {
return `${(0, process_1.geteuid)()}`;
if (process && process.geteuid) {
return `${process.geteuid()}`;
}

@@ -13,0 +12,0 @@ return "DEFAULT";

import { homedir } from "os";
import { sep } from "path";
import { geteuid } from "process";
const homeDirCache = {};
const getHomeDirCacheKey = () => {
if (geteuid) {
return `${geteuid()}`;
if (process && process.geteuid) {
return `${process.geteuid()}`;
}

@@ -9,0 +8,0 @@ return "DEFAULT";

2

package.json
{
"name": "@smithy/shared-ini-file-loader",
"version": "2.0.7",
"version": "2.0.8",
"dependencies": {

@@ -5,0 +5,0 @@ "@smithy/types": "^2.3.0",

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