HEX
Server: Apache
System: Linux webd004.cluster130.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User: frenchy (106757)
PHP: 7.4.33
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/frenchy/www/french-american.org/current/node_modules/postcss-syntax/syntax.js
"use strict";
const stringify = require("./stringify");
const parseStyle = require("./parse-style");
const normalOpts = require("./normal-opts");

module.exports = (extract, lang) => {
	const defaultConfig = {
		postcss: "css",
		stylus: "css",
		babel: "jsx",
		xml: "html",
	};
	function parse (source, opts) {
		source = source.toString();
		opts = normalOpts(opts, this);
		const document = parseStyle(source, opts, extract(source, opts));
		document.source.lang = lang;
		return document;
	}

	function initSyntax (syntax) {
		syntax.stringify = stringify.bind(syntax);
		syntax.parse = parse.bind(syntax);
		syntax.extract = extract.bind(syntax);
		return syntax;
	}

	function syntax (config) {
		return initSyntax({
			config: Object.assign({}, defaultConfig, config),
		});
	}

	initSyntax(syntax);
	syntax.config = defaultConfig;
	return syntax;
};