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

glob

Package Overview
Dependencies
Maintainers
1
Versions
155
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

glob - npm Package Compare versions

Comparing version 7.0.3 to 7.0.4

3

glob.js

@@ -44,2 +44,3 @@ // Approach:

var fs = require('fs')
var rp = require('fs.realpath')
var minimatch = require('minimatch')

@@ -236,3 +237,3 @@ var Minimatch = minimatch.Minimatch

p = self._makeAbs(p)
fs.realpath(p, self.realpathCache, function (er, real) {
rp.realpath(p, self.realpathCache, function (er, real) {
if (!er)

@@ -239,0 +240,0 @@ set[real] = true

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

"description": "a little globber",
"version": "7.0.3",
"version": "7.0.4",
"repository": {

@@ -21,2 +21,3 @@ "type": "git",

"dependencies": {
"fs.realpath": "^1.0.0",
"inflight": "^1.0.4",

@@ -23,0 +24,0 @@ "inherits": "2",

@@ -5,2 +5,3 @@ module.exports = globSync

var fs = require('fs')
var rp = require('fs.realpath')
var minimatch = require('minimatch')

@@ -61,3 +62,3 @@ var Minimatch = minimatch.Minimatch

p = self._makeAbs(p)
var real = fs.realpathSync(p, self.realpathCache)
var real = rp.realpathSync(p, self.realpathCache)
set[real] = true

@@ -64,0 +65,0 @@ } catch (er) {

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