mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 21:39:30 +08:00
14 lines
No EOL
290 B
Text
14 lines
No EOL
290 B
Text
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = ensureBlock;
|
|
|
|
var _toBlock = require("./toBlock");
|
|
|
|
function ensureBlock(node, key = "body") {
|
|
const result = (0, _toBlock.default)(node[key], node);
|
|
node[key] = result;
|
|
return result;
|
|
} |