import { postcss } from "https://deno.land/x/bundler@0.6.2/deps.ts";
const { Node } = postcss;
Insert new node before current node to current node’s parent.
Just alias for node.parent.insertBefore(node, add)
.
decl.before('content: ""')
import { postcss } from "https://deno.land/x/bundler@0.6.2/deps.ts";
const { Node } = postcss;
Insert new node before current node to current node’s parent.
Just alias for node.parent.insertBefore(node, add)
.
decl.before('content: ""')