We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03240ad commit a9471a6Copy full SHA for a9471a6
browser/websocket/updateCodeBlock.ts
@@ -78,6 +78,7 @@ export const updateCodeBlock = async (
78
if (!options?.socket) opt.socket.disconnect();
79
};
80
81
+/** コード本文のテキストを取得する */
82
function getCodeBody(code: string | string[] | CodeFile): string[] {
83
const content = isCodeFile(code) ? code.content : code;
84
if (Array.isArray(content)) return content;
0 commit comments