You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
179 B

1 month ago
  1. var wildcard = require('..');
  2. var testdata = {
  3. 'a.b.c' : {},
  4. 'a.b' : {},
  5. 'a' : {},
  6. 'a.b.d' : {}
  7. };
  8. console.log(wildcard('a.*.c', testdata));
  9. // --> { 'a.b.c': {} }