mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-28 08:02:16 +08:00
12 lines
198 B
JavaScript
12 lines
198 B
JavaScript
'use strict';
|
|
|
|
const startingStyle = {
|
|
parse: {
|
|
prelude: null,
|
|
block(nested = false) {
|
|
return this.Block(nested);
|
|
}
|
|
}
|
|
};
|
|
|
|
module.exports = startingStyle;
|