Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Latest
method default.prototype.insertAfter
import { default } from "https://deno.land/x/postcss@8.4.16/lib/container.js";

Insert new node after old node within the container.

Parameters

oldNode: Child | number

Child or child’s index.

newNode:
| Child
| ChildProps
| string
| Child[]
| ChildProps[]
| string[]

New node.

Returns

this

This node for methods chain.