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

awscred

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

awscred - npm Package Compare versions

Comparing version 1.4.1 to 1.4.2

6

index.js

@@ -231,3 +231,4 @@ var fs = require('fs'),

if (err) return cb(err)
cb(null, parseAwsIni(data)[profile] || {})
var parsedIni = parseAwsIni(data)
cb(null, parsedIni['profile ' + profile] || parsedIni[profile] || {})
})

@@ -248,3 +249,4 @@ }

return parseAwsIni(data)[profile] || {}
var parsedIni = parseAwsIni(data)
return parsedIni['profile ' + profile] || parsedIni[profile] || {}
}

@@ -251,0 +253,0 @@

{
"name": "awscred",
"version": "1.4.1",
"version": "1.4.2",
"description": "Resolves AWS credentials (and region) using env, file and IAM strategies",

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