first commit

This commit is contained in:
aschwarz
2023-11-03 11:24:13 +01:00
commit fd10ee8d96
3674 changed files with 385385 additions and 0 deletions

19
bootstrap/node_modules/component-query/example.html generated vendored Normal file
View File

@ -0,0 +1,19 @@
<html>
<head>
<title>Query</title>
</head>
<body>
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
</ul>
<script src="build/build.js"></script>
<script>
var query = require('query');
console.log(query('ul > li'));
console.log(query.all('ul > li'));
</script>
</body>
</html>