mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-05 00:06:20 +02:00
8 lines
138 B
JavaScript
8 lines
138 B
JavaScript
var wildcard = require('..');
|
|
|
|
console.log(wildcard('foo.*', 'foo.bar'));
|
|
// --> true
|
|
|
|
console.log(wildcard('foo.*', 'foo'));
|
|
// --> true
|