UNPKG

jsdom

Version:

A JavaScript implementation of many web standards

13 lines (9 loc) 420 B
"use strict"; const { next: syntaxes } = require("@csstools/css-syntax-patches-for-csstree"); const csstree = require("css-tree"); // fork() only returns the core parse/generate/walk API, dropping standalone utilities like string, url, // ident, tokenTypes, etc. Re-export the ones we need. const forked = csstree.fork(syntaxes); forked.string = csstree.string; forked.ident = csstree.ident; module.exports = forked;