Socket
Socket
Sign inDemoInstall

cleaner-node

Package Overview
Dependencies
Maintainers
1
Versions
175
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cleaner-node - npm Package Compare versions

Comparing version 0.3.7 to 0.3.8

2

package.json
{
"name": "cleaner-node",
"version": "0.3.7",
"version": "0.3.8",
"description": "Helpful utilities and scripts to make Node projects more legible and easier for the next developer to take over.",

@@ -5,0 +5,0 @@ "main": "index.js",

const fs = require('fs');
const path = require('path');
const stats = itemPath => {
const getStats = itemPath => {
try {

@@ -13,7 +13,7 @@ const stats = fs.lstatSync(itemPath);

const isFile = itemPath => {
const stats = stats(itemPath);
const stats = getStats(itemPath);
return stats && stats.isFile();
}
const isFolder = itemPath => {
const stats = stats(itemPath);
const stats = getStats(itemPath);
return stats && stats.isFolder;

@@ -53,3 +53,3 @@ }

module.exports = {
stats,
getStats,
isFile,

@@ -56,0 +56,0 @@ isFolder,

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