UNPKG

@berun/runner-mdx-frontmatter

Version:

BeRun runner for using yaml frontmatter with MDX documentation applications

12 lines (10 loc) 246 B
import transform from './transform' export default async function(this: any, src) { const callback = this.async() try { const result = await transform(src) return callback(null, result) } catch (ex) { return callback(ex) } }