Skip to main content
Module

x/css/example.ts

CSS Lexer & Parser implementation for Deno
Latest
File
import { parse } from "./core/parser/parser.ts";const ast = parse("/* comment */ p { color: black; }", { position: true, comments: true,});console.log(ast);