New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

functional-docs

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

functional-docs - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

5

index.js

@@ -30,4 +30,5 @@ var fs = require('fs'),

async.forEach(srcFiles, function(file, forEachCB) { // slower, but using batches to prevent EMFILE, Too many open files
fs.readFile(file, 'utf8', function(err, content) {
async.forEach(srcFiles, function(fileName, forEachCB) {
var file = srcDir + "/" + fileName;
fs.readFile(file, 'utf8', function(err, content) {
if (err) {

@@ -34,0 +35,0 @@ if (!fs.lstatSync(file).isDirectory()) {

2

package.json
{
"name": "functional-docs",
"version": "0.0.3",
"version": "0.0.4",
"author": "Garen Torikian",

@@ -5,0 +5,0 @@ "keywords": ["documentation", "docs", "testing", "html"],

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