source: imaps-frontend/node_modules/wildcard/examples/arrays.js@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 4 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 163 bytes
RevLine 
[79a0317]1var wildcard = require('..');
2var testdata = [
3 'a.b.c',
4 'a.b',
5 'a',
6 'a.b.d'
7];
8
9console.log(wildcard('a.b.*', testdata));
10// --> ['a.b.c', 'a.b', 'a.b.d']
Note: See TracBrowser for help on using the repository browser.