mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-08 19:34:56 +02:00
11 lines
179 B
JavaScript
11 lines
179 B
JavaScript
var wildcard = require('..');
|
|
var testdata = {
|
|
'a.b.c' : {},
|
|
'a.b' : {},
|
|
'a' : {},
|
|
'a.b.d' : {}
|
|
};
|
|
|
|
console.log(wildcard('a.*.c', testdata));
|
|
// --> { 'a.b.c': {} }
|