unused exports

pull/10798/head
Rich Harris 2 years ago
parent 96eaf4a891
commit 82b496d360

@ -624,25 +624,6 @@ function get_first_child(block) {
return /** @type {Text | Element | Comment} */ (current);
}
/**
* @param {import('#client').Block} block
* @returns {Text | Element | Comment}
*/
export function get_first_element(block) {
const current = block.d;
if (is_array(current)) {
for (let i = 0; i < current.length; i++) {
const node = current[i];
if (node.nodeType !== 8) {
return node;
}
}
}
return /** @type {Text | Element | Comment} */ (current);
}
/**
* @param {import('#client').EachItemBlock} block
* @param {any} item
@ -669,7 +650,7 @@ function update_each_item_block(block, item, index, type) {
* @param {any} controlled
* @returns {void}
*/
export function destroy_each_item_block(block, controlled = false) {
function destroy_each_item_block(block, controlled = false) {
const dom = block.d;
if (!controlled && dom !== null) {
remove(dom);

Loading…
Cancel
Save