📦 Initialize Geulbeot structure and merge Prompts & test projects
This commit is contained in:
6
02. Prompts/문서생성/domain/도메인_문서생성_미분류_과업_v01.md
Normal file
6
02. Prompts/문서생성/domain/도메인_문서생성_미분류_과업_v01.md
Normal file
@@ -0,0 +1,6 @@
|
||||
function cloneMoveChildrenToList(doc, parentEl) {
|
||||
if (!parentEl) return [];
|
||||
const arr = [];
|
||||
Array.from(parentEl.children).forEach(ch => arr.push(ch));
|
||||
return arr;
|
||||
}
|
||||
Reference in New Issue
Block a user