laif-ds
Version:
Design System di Laif con componenti React basati su principi di Atomic Design
20 lines (19 loc) • 400 B
JavaScript
"use client";
import { toHast as t } from "../../mdast-util-to-hast/lib/index.js";
function f(r, n) {
return r && "run" in r ? async function(e, u) {
const c = (
/** @type {HastRoot} */
t(e, { file: u, ...n })
);
await r.run(c, u);
} : function(e, u) {
return (
/** @type {HastRoot} */
t(e, { file: u, ...r || n })
);
};
}
export {
f as default
};