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

combiner

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

combiner - npm Package Compare versions

Comparing version

to
1.2.0

36

lib/combiner.js

@@ -77,10 +77,5 @@ var functools = require('functools'),

path.exists(uri, function(exists){
fs.stat(uri, function(error, stat){
if(error){
return callback(error);
}
if(!stat.isDirectory()){
files.push(uri);
if(!exists){
next();

@@ -90,14 +85,29 @@ return;

fs.readdir(uri,function(error, list){
fs.stat(uri, function(error, stat){
if(error){
return callback(error);
callback(error);
return;
}
Array.prototype.push.apply(files, list.map(function(el){
return path.join(uri,el);
}));
if(!stat.isDirectory()){
files.push(uri);
next();
return;
}
next();
fs.readdir(uri,function(error, list){
if(error){
callback(error);
return;
}
Array.prototype.push.apply(files, list.map(function(el){
return path.join(uri,el);
}));
next();
});
});
});
})(0);

@@ -104,0 +114,0 @@ }

{
"name":"combiner",
"version":"1.1.0",
"version":"1.2.0",
"description":"Flexible file-joining library with functional middleware support.",

@@ -5,0 +5,0 @@ "author":"Azer Koculu <azer@kodfabrik.com>",