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

prostore.glob-utils

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prostore.glob-utils - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

14

index.js

@@ -126,8 +126,10 @@ 'use strict';

function _copy(cwd, files, target, cb) {
fs.mkdirp(target, function(err) {
if (err) return cb(err);
async.each(files, function(file, cb) {
fs.copy(path.join(cwd, file), target, cb);
}, cb);
});
async.each(files, function(file, cb) {
var srcFile = path.join(cwd, file.path)
, dstFile = path.join(target, file.path);
fs.mkdirp(path.dirname(dstFile), function(err) {
if (err) return cb(err);
fs.copy(srcFile, dstFile, cb);
});
}, cb);
}

@@ -134,0 +136,0 @@

{
"name": "prostore.glob-utils",
"version": "0.2.0",
"version": "0.2.1",
"description": "Glob Utilities",

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