Readme

Extract Args from a val

await @pomdtr.extractValArgs("pomdtr.extractValArgs") // [{ "name": "val", "type": "string" }]

Why ?

Just an example of doing some static analysis.

Using this approach to generate a json schema of a val input would be nice.

1
2
3
4
5
6
7
8
9
10
import { extractArgs } from "https://esm.town/v/pomdtr/extractArgs";
import { valToString } from "https://esm.town/v/pomdtr/valToString";
export async function extractValArgs(val: string) {
const code = await valToString(val);
return extractArgs(code) as Promise<{
name: string;
type: string;
}[]>;
}
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!
v17
October 23, 2023