RunKit + npm: postcss

node v18.11.0
endpointsharetweet
const postcss = require("postcss"); const root = postcss.parse("@foo; @bar; @baz"); const foo = root.nodes[0]; const baz = root.nodes[2]; baz.before(foo); root.toString();
Created from: https://npm.runkit.com/postcss
Loading…