1
2
3
4
5
export function extractMetadata(name: string, code: string) {
const regex = `// ${name}: (.+)`;
const match = code.match(regex);
return match?.[1];
}
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
February 12, 2024