Socket
Socket
Sign inDemoInstall

fs-extra

Package Overview
Dependencies
15
Maintainers
1
Versions
96
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.26.3 to 0.26.4

4

CHANGELOG.md

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

0.26.4 / 2016-01-05
-------------------
- `copySync()` made `preserveTimestamps` default consistent with `copy()` which is `false`. See: https://github.com/jprichardson/node-fs-extra/pull/208
0.26.3 / 2015-12-17

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

2

lib/copy-sync/copy-sync.js

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

options.clobber = 'clobber' in options ? !!options.clobber : true
options.preserveTimestamps = 'preserveTimestamps' in options ? !!options.preserveTimestamps : true
options.preserveTimestamps = 'preserveTimestamps' in options ? !!options.preserveTimestamps : false

@@ -19,0 +19,0 @@ options.filter = options.filter || function () { return true }

{
"name": "fs-extra",
"version": "0.26.3",
"version": "0.26.4",
"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": "https://github.com/jprichardson/node-fs-extra",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc