🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
257 B
JavaScript
Executable File
13 lines
257 B
JavaScript
Executable File
module.exports = {
|
|
parse: {
|
|
prelude: function() {
|
|
return this.createSingleNodeList(
|
|
this.MediaQueryList()
|
|
);
|
|
},
|
|
block: function() {
|
|
return this.Block(false);
|
|
}
|
|
}
|
|
};
|