Socket
Socket
Sign inDemoInstall

bare-fs

Package Overview
Dependencies
Maintainers
2
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bare-fs - npm Package Compare versions

Comparing version 2.1.4 to 2.1.5

10

index.js

@@ -639,3 +639,3 @@ /* global Bare */

if (opts.recursive) return mkdirRecursive(filepath, mode, cb)
if (opts.recursive) return mkdirRecursive(filepath.replace(/\//g, path.sep), mode, cb)

@@ -647,3 +647,3 @@ const req = getReq()

function mkdirResursiveSync (filepath, mode) {
function mkdirRecursiveSync (filepath, mode) {
try {

@@ -660,3 +660,3 @@ mkdirSync(filepath, { mode })

mkdirResursiveSync(filepath.slice(0, i), { mode })
mkdirRecursiveSync(filepath.slice(0, i), { mode })

@@ -685,3 +685,3 @@ try {

if (opts.recursive) return mkdirResursiveSync(filepath, mode)
if (opts.recursive) return mkdirRecursiveSync(filepath.replace(/\//g, path.sep), mode)

@@ -1023,3 +1023,3 @@ binding.mkdirSync(filepath, mode)

symlink(target, filepath, type, filepath, cb)
symlink(target, filepath, type, cb)
})

@@ -1026,0 +1026,0 @@

{
"name": "bare-fs",
"version": "2.1.4",
"version": "2.1.5",
"description": "Native file system for Javascript",

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