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

wildcard-match

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wildcard-match - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

3

dist/index.d.ts

@@ -6,5 +6,2 @@ interface MatchFn {

declare function wildcardMatch(pattern: string, separator?: string): MatchFn;
declare namespace wildcardMatch {
var default: typeof wildcardMatch;
}
export = wildcardMatch;

6

dist/index.js

@@ -53,4 +53,8 @@ "use strict";

}
wildcardMatch.default = wildcardMatch;
// Support both CommonJS and ES6-like modules.
// Could be `wildcardMatch.default = wildcardMatch`, but TypeScript has a bug:
// https://github.com/microsoft/TypeScript/issues/32470
// eslint-disable-next-line dot-notation
wildcardMatch['default'] = wildcardMatch;
module.exports = wildcardMatch;
//# sourceMappingURL=index.js.map
{
"name": "wildcard-match",
"version": "2.0.0",
"version": "2.0.1",
"description": "Check if a string matches a pattern containing * and ** wildcards",

@@ -5,0 +5,0 @@ "author": "Alex Schneider <me@schneider.ax>",

Sorry, the diff of this file is not supported yet

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