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

awsass

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

awsass - npm Package Compare versions

Comparing version 0.0.17 to 0.0.18

2

package.json
{
"name": "awsass",
"description": "AWSASS is an assistant to AWS, mostly for running better scripts.",
"version": "0.0.17",
"version": "0.0.18",
"author": "Jsonize",

@@ -6,0 +6,0 @@ "repository": "https://github.com/jsonize/awsass",

@@ -119,3 +119,6 @@ const AWS = require("aws-sdk");

}
callback(undefined, subnetsDescription.Subnets.filter(subnet => subnet.DefaultForAz).map(subnet => subnet.SubnetId));
let subnets = subnetsDescription.Subnets.filter(subnet => subnet.DefaultForAz);
if (subnets.length === 0)
subnets = subnetsDescription.Subnets;
callback(undefined, subnets.map(subnet => subnet.SubnetId));
});

@@ -122,0 +125,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