Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 2x 2x 2x 2x 2217x 2217x 2217x 2217x 2x 2x 2x 2x 2x 10992x 5415x 29712x 29712x 20284x 20284x 29712x 10992x 3667x 3667x 10992x | import { is_array } from '../utils.js'; /** @param {string} html */ export function create_fragment_from_html(html) { var elem = document.createElement('template'); elem.innerHTML = html; return elem.content; } /** * @param {import('#client').Dom} current */ export function remove(current) { if (is_array(current)) { for (var i = 0; i < current.length; i++) { var node = current[i]; if (node.isConnected) { node.remove(); } } } else if (current.isConnected) { current.remove(); } } |