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 2344x 2344x 2344x 2344x 2x 2x 2x 2x 2x 11231x 5757x 31109x 31109x 20418x 20418x 31109x 11231x 4108x 4108x 11231x | 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(); } } |