This website works better with JavaScript
Home
Esplora
Aiuto
Registrati
Accedi
WangZixian
/
app
Segui
1
Vota
0
Forka
0
File
Problemi
0
Pull Requests
0
Wiki
Albero (Tree):
7178e82b75
Rami (Branch)
Tag
master
app
/
node_modules
/
zod-to-json-schema
/
dist
/
esm
/
parsers
/
enum.js
enum.js
120 B
Cronologia
Originale
1
2
3
4
5
6
export function parseEnumDef(def) {
return {
type: "string",
enum: Array.from(def.values),
};
}