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

fs-extra

Package Overview
Dependencies
Maintainers
1
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fs-extra - npm Package Compare versions

Comparing version 0.3.0 to 0.3.1

4

CHANGELOG.md

@@ -0,1 +1,5 @@

0.3.1 / 2012-10-11
------------------
* Fixed some stray globals.
0.3.0 / 2012-10-09

@@ -2,0 +6,0 @@ ------------------

4

lib/copy.js

@@ -7,3 +7,3 @@ var fs = require('fs')

copyFileSync = function(srcFile, destFile) {
var copyFileSync = function(srcFile, destFile) {
var bytesRead, fdr, fdw, pos;

@@ -23,3 +23,3 @@ fdr = fs.openSync(srcFile, 'r');

copyFile = function(srcFile, destFile, cb) {
var copyFile = function(srcFile, destFile, cb) {
var fdr, fdw;

@@ -26,0 +26,0 @@ fdr = fs.createReadStream(srcFile);

{
"name": "fs-extra",
"version": "0.3.0",
"version": "0.3.1",
"description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf.",

@@ -5,0 +5,0 @@ "homepage": [

@@ -98,3 +98,3 @@ [![build status](https://secure.travis-ci.org/jprichardson/node-fs-extra.png)](http://travis-ci.org/jprichardson/node-fs-extra)

### remove()
### remove() / delete()

@@ -192,9 +192,4 @@ Removes a file or directory. The directory can have contents. Like `rm -rf`.

TODO
----
* Remove all CoffeeScript from tests.
Author

@@ -201,0 +196,0 @@ ------

Sorry, the diff of this file is not supported yet

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