We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0de6e0 commit a715379Copy full SHA for a715379
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "worker-functions",
3
- "version": "0.2.0",
+ "version": "0.3.0",
4
"description": "Full-stack Typesafety with Cloudflare Workers 👷",
5
"main": "generated-client/index.ts",
6
"scripts": {
templates/worker.ts
@@ -27,7 +27,6 @@ export default {
27
const url = new URL(request.url);
28
const functionName = decodeURIComponent(url.pathname.split('/')[1]);
29
let input: any[] = [];
30
- console.log(functions[functionName], functionName);
31
try {
32
input = (await request.json()) as unknown[];
33
} catch {}
0 commit comments