Updated the files.

This commit is contained in:
Batuhan Berk Başoğlu 2024-02-08 19:38:41 -05:00
parent 1553e6b971
commit 753967d4f5
23418 changed files with 3784666 additions and 0 deletions

10
my-app/node_modules/wildcard/examples/arrays.js generated vendored Executable file
View file

@ -0,0 +1,10 @@
var wildcard = require('..');
var testdata = [
'a.b.c',
'a.b',
'a',
'a.b.d'
];
console.log(wildcard('a.b.*', testdata));
// --> ['a.b.c', 'a.b', 'a.b.d']

10
my-app/node_modules/wildcard/examples/objects.js generated vendored Executable file
View file

@ -0,0 +1,10 @@
var wildcard = require('..');
var testdata = {
'a.b.c' : {},
'a.b' : {},
'a' : {},
'a.b.d' : {}
};
console.log(wildcard('a.*.c', testdata));
// --> { 'a.b.c': {} }

7
my-app/node_modules/wildcard/examples/strings.js generated vendored Executable file
View file

@ -0,0 +1,7 @@
var wildcard = require('..');
console.log(wildcard('foo.*', 'foo.bar'));
// --> true
console.log(wildcard('foo.*', 'foo'));
// --> true