Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/html_parser/src/mod.ts>DomUtils.prependChild

Port of fb55/htmlparser2 for Deno
Latest
function DomUtils.prependChild
import { DomUtils } from "https://deno.land/x/html_parser@v0.1.3/src/mod.ts";
const { prependChild } = DomUtils;

Prepend a child to an element.

Parameters

elem: Element

The element to prepend before.

child: Node

The element to be added as a child.