Improve Jqhtml_Integration.js documentation with hydration system explanation Add jqhtml-laravel integration packages for traditional Laravel projects 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
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': {} }
|