🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

fs-path

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fs-path - npm Package Compare versions

Comparing version

to
0.0.24

LICENSE

4

lib/index.js

@@ -58,3 +58,3 @@ "use strict";

if (that._win32) {
cmd = 'echo da|xcopy /s /e "' + path.join(from, '*') + '" "' + dist + '"';
cmd = 'echo d|xcopy /s /e /y "' + path.join(from, '*') + '" "' + dist + '"';
} else {

@@ -70,3 +70,3 @@ cmd = 'cp -f -R -p ' + path.join(from, '*').replace(/ /g, '\\ ') + ' ' + dist.replace(/ /g, '\\ ');

if (that._win32) {
cmd = 'echo fa|xcopy "' + from + '" "' + dist + '"';
cmd = 'echo f|xcopy /y "' + from + '" "' + dist + '"';
} else {

@@ -73,0 +73,0 @@ cmd = 'cp -f -p ' + from.replace(/ /g, '\\ ') + ' ' + dist.replace(/ /g, '\\ ');

{
"name": "fs-path",
"version": "0.0.23",
"version": "0.0.24",
"main": "lib/index.js",

@@ -8,3 +8,3 @@ "author": {

"email": "pillys@163.com",
"url": "http://www.calljs.com"
"url": "http://www.qque.com"
},

@@ -28,3 +28,4 @@ "keywords": [

"description": "file and directory op libs, find, findSync, mkdir, mkdirSync, copy, copySync, remove, removeSync, writeFile, writeFileSync",
"readmeFilename": "README.md"
"readmeFilename": "README.md",
"license": "MIT"
}

@@ -5,4 +5,2 @@ fs-path

Useful file utitiles. See [API Documentation](http://pillys.github.com/fs-path/#FsPath) for detailed info.
---

@@ -9,0 +7,0 @@