1.2.2 • Published 6 years ago

mwildcards v1.2.2

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

mwildcards

very simple. I created this project to configure environment variable parameters in the console. Use simple grammar and stay practical.

example

import Mwildcards from '../mwildcards';
const env_trace = process.env.TRACE || '';
const mw = new Mwildcards(env_trace,{ nocase: true });

/// your code.
mw.isMatch('balabala');
TRACE="module/*,-module/XD" node index.js

doc

* : match Letters, numbers or underscore. ** : match any thing. - : if starts with -, matches will be skip.