Socket
Socket
Sign inDemoInstall

tar

Package Overview
Dependencies
6
Maintainers
7
Versions
122
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.1.14 to 6.1.15

2

lib/normalize-unicode.js

@@ -9,5 +9,5 @@ // warning: extremely hot code path.

if (!hasOwnProperty.call(normalizeCache, s)) {
normalizeCache[s] = s.normalize('NFKD')
normalizeCache[s] = s.normalize('NFD')
}
return normalizeCache[s]
}

@@ -126,3 +126,3 @@ // A path exclusive reservation system

// don't need normPath, because we skip this entirely for windows
return normalize(stripSlashes(join(p))).toLowerCase()
return stripSlashes(join(normalize(p))).toLowerCase()
})

@@ -129,0 +129,0 @@

@@ -108,3 +108,3 @@ 'use strict'

// to reason about, and collisions are hazards rather than just failures.
const cacheKeyNormalize = path => normalize(stripSlash(normPath(path)))
const cacheKeyNormalize = path => stripSlash(normPath(normalize(path)))
.toLowerCase()

@@ -111,0 +111,0 @@

@@ -5,3 +5,3 @@ {

"description": "tar for node",
"version": "6.1.14",
"version": "6.1.15",
"repository": {

@@ -8,0 +8,0 @@ "type": "git",

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