mirror of
https://github.com/chrisnov-it/quantumbotx.git
synced 2026-07-31 20:57:48 +00:00
17 lines
269 B
JavaScript
17 lines
269 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
const layer = {
|
||
|
|
parse: {
|
||
|
|
prelude() {
|
||
|
|
return this.createSingleNodeList(
|
||
|
|
this.LayerList()
|
||
|
|
);
|
||
|
|
},
|
||
|
|
block() {
|
||
|
|
return this.Block(false);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
module.exports = layer;
|