mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 07:09:30 +08:00
16 lines
274 B
Text
16 lines
274 B
Text
'use strict';
|
|
|
|
const media = {
|
|
parse: {
|
|
prelude() {
|
|
return this.createSingleNodeList(
|
|
this.MediaQueryList()
|
|
);
|
|
},
|
|
block() {
|
|
return this.Block(false);
|
|
}
|
|
}
|
|
};
|
|
|
|
module.exports = media;
|