https://github.com/joonhocho/superwild
Extremely fast, optimized, compilable wildcard pattern matching without using RegExp, which is slow.
https://github.com/joonhocho/superwild
Last synced: 4 months ago
JSON representation
Extremely fast, optimized, compilable wildcard pattern matching without using RegExp, which is slow.
- Host: GitHub
- URL: https://github.com/joonhocho/superwild
- Owner: joonhocho
- License: mit
- Created: 2019-08-02T19:28:22.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T06:11:51.000Z (over 2 years ago)
- Last Synced: 2025-02-25T20:18:14.980Z (5 months ago)
- Language: TypeScript
- Size: 895 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# superwild
Extremely fast, optimized, compilable wildcard pattern matching without using RegExp (slow) with zero dependencies.[](https://badge.fury.io/js/superwild)
[](https://www.npmjs.com/package/superwild)

[](https://travis-ci.org/joonhocho/superwild)
[](https://david-dm.org/joonhocho/superwild)
[](https://github.com/joonhocho/superwild/blob/master/LICENSE)## Get Started
```
npm install -D superwild
```
or
```
yarn add -D superwild
```## How to Use
```typescript
import {
BuildPath,
ICompilePathOptions,
IPathParams,
compilePathWithParams,
startsWith,
WildcardPathMatcher,
getWildcardStringPathMatcher,
getWildcardStringMatcher
} from 'superwild';
```## License
[MIT License](https://github.com/joonhocho/superwild/blob/master/LICENSE)