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

appscode-api-js-client

Package Overview
Dependencies
Maintainers
1
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appscode-api-js-client - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

8

index.js
var fs = require('fs');
var path = require('path');
module.exports = function (dir, depth, apis) {
var load = function (dir, depth, apis) {
depth = depth || 0;

@@ -9,3 +9,3 @@ apis = apis || {};

if (fs.statSync(dir + '/' + file).isDirectory()) {
apis = walkSync(dir + file + '/', depth + 1, apis);
apis = load(dir + file + '/', depth + 1, apis);
}

@@ -24,2 +24,4 @@ else {

return apis;
}(path.join(__dirname, './apis/'));
};
module.exports = load(path.join(__dirname, './apis/'));
{
"name": "appscode-api-js-client",
"version": "1.0.3",
"version": "1.0.4",
"description": "AppsCode API JavaScript Client",

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