mirror of
https://github.com/Dvorinka/ClubLogos.git
synced 2026-06-04 03:52:57 +00:00
17 lines
301 B
JavaScript
17 lines
301 B
JavaScript
'use strict';
|
|
|
|
const media = {
|
|
parse: {
|
|
prelude() {
|
|
return this.createSingleNodeList(
|
|
this.MediaQueryList()
|
|
);
|
|
},
|
|
block(isStyleBlock = false) {
|
|
return this.Block(isStyleBlock);
|
|
}
|
|
}
|
|
};
|
|
|
|
module.exports = media;
|