Extract vals infos (author, name, version) from a val url (either from esm.town or val.town ). Example usage: const {author, name} = extractValInfo(import.meta.url) Also returns a unique slug for the val: <author>/<name>
15
pomdtr
mdx
HTTP
title: mdx {frontmatter.title} Usage import { extractValInfo } from "https://esm.town/v/pomdtr/extractValInfo";
import { mdx } from "https://esm.town/v/pomdtr/mdx";
const { author, name } = extractValInfo(import.meta.url);
export default mdx(author, name);