camflan-uuids.web.val.run
1
2
3
4
5
6
7
8
9
10
11
import { v1 as uuidv1, v4 as uuidv4 } from "npm:uuid";
export default async function(req: Request): Promise<Response> {
return Response.json({
success: true,
data: {
v1: uuidv1(),
v4: uuidv4(),
},
});
}
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!
March 18, 2024