1.0.1 • Published 10 months ago

@jswork/wildcard-match v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
10 months ago

wildcard-match

A function for matching strings using * wildcard patterns.

version license size download

installation

npm install @jswork/wildcard-match

usage

import wildcardMatch from '@jswork/wildcard-match';

// 测试案例
console.log(wildcardMatch("filename.txt", "*name")); // false
console.log(wildcardMatch("filename.txt", "name*")); // false
console.log(wildcardMatch("filename.txt", "*name*")); // true
console.log(wildcardMatch("abcfilenameabc", "*xx*name*xx*")); // false
console.log(wildcardMatch("xxabcnamexx", "*xx*name*xx*")); // true

license

Code released under the MIT license.

1.0.1

10 months ago