Socket
Socket
Sign inDemoInstall

minimatch

Package Overview
Dependencies
3
Maintainers
1
Versions
107
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.0.6 to 3.0.7

8

minimatch.js

@@ -309,3 +309,3 @@ module.exports = minimatch

var re = ''
var hasMagic = false
var hasMagic = !!options.nocase
var escaping = false

@@ -895,7 +895,3 @@ // ? => one single character

if (typeof p === 'string') {
if (options.nocase) {
hit = f.toLowerCase() === p.toLowerCase()
} else {
hit = f === p
}
hit = f === p
this.debug('string match', p, f, hit)

@@ -902,0 +898,0 @@ } else {

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

"description": "a glob matcher in javascript",
"version": "3.0.6",
"version": "3.0.7",
"publishConfig": {
"tag": "v3.0-legacy"
},
"repository": {

@@ -8,0 +11,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