2020-05-19 11:43:42 +03:00

19 lines
332 B
JavaScript

"use strict";
const getSyntax = require("./get-syntax");
const patch = require("./patch-postcss");
function parser (source, lang, opts) {
patch();
const syntax = getSyntax(lang, opts);
const root = syntax.parse(source, opts);
root.source.syntax = syntax;
root.source.lang = lang;
return root;
}
module.exports = parser;