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.
24 lines
371 B
24 lines
371 B
3 years ago
|
#!/usr/bin/env node
|
||
|
|
||
|
const omelette = require('../');
|
||
|
omelette('hello').tree({
|
||
|
how: {
|
||
|
much: {
|
||
|
is: {
|
||
|
this: ['car'],
|
||
|
that: ['house'],
|
||
|
}
|
||
|
},
|
||
|
are: ['you'],
|
||
|
many: ['cars', 'houses'],
|
||
|
},
|
||
|
where: {
|
||
|
are: {
|
||
|
you: ['from'],
|
||
|
the: ['houses', 'cars'],
|
||
|
},
|
||
|
is: {
|
||
|
your: ['house', 'car'],
|
||
|
},
|
||
|
},
|
||
|
}).init();
|