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

kube-tools

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kube-tools - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

15

lib/index.js

@@ -8,9 +8,8 @@ 'use strict';

(function resolve(dirpath, _exports) {
_.forEach(fs.readdirSync(dirpath), filename => {
if (path.extname(filename) === '.js' && filename !== 'index.js') {
const jsname = path.basename(filename, '.js');
_exports[jsname] = require('./' + filename);
}
});
})(__dirname, exports);
_.forEach(fs.readdirSync(__dirname), filename => {
if (filename === 'index.js') {
return;
}
const jsname = path.basename(filename, '.js');
exports[jsname] = require('./' + filename);
});

@@ -7,3 +7,3 @@ 'use strict';

const { pod } = require('./');
const pod = require('./pod');

@@ -10,0 +10,0 @@ module.exports = function(opts) {

{
"name": "kube-tools",
"version": "0.0.3",
"version": "0.0.4",
"description": "",

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