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

yaml-crypt

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yaml-crypt - npm Package Compare versions

Comparing version 0.5.0 to 0.5.1

9

lib/yaml-crypt-helper.js

@@ -120,6 +120,7 @@ const fs = require("fs");

function walk(dir, recursive, callback) {
const entries = fs.readdirSync(dir, { withFileTypes: true });
for (const entry of entries) {
const p = path.resolve(dir, entry.name);
if (entry.isDirectory()) {
const files = fs.readdirSync(dir);
for (const file of files) {
const p = path.resolve(dir, file);
const stat = fs.statSync(p);
if (stat.isDirectory()) {
if (recursive) {

@@ -126,0 +127,0 @@ walk(p, true, callback);

{
"name": "yaml-crypt",
"version": "0.5.0",
"version": "0.5.1",
"description": "Encrypt and decrypt YAML documents",

@@ -5,0 +5,0 @@ "license": "MIT",

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