1import { findingmyvoicecounter } from "https://esm.town/v/politelyinvinciblepointer/findingmyvoicecounter";
2
3export function getfindingmyvoicecounter() {
4 return findingmyvoicecounter;
5}
1export function myApi(name) {
2 return "hi " + name;
3}
1import { fetch } from "https://esm.town/v/std/fetch";
2
3export async function githubKeys(username: string): Promise<string> {
4 const res = await fetch(`https://github.com/${username}.keys`);
5 return res.text();
1export function myApi(name) {
2 return "Hello " + name;
3}
1import { ghIssueFromNodeId } from "https://esm.town/v/augustohp/ghIssueFromNodeId";
2
3export async function ghProjectColumnOfIssue(
4 nodeId: string,
5 token: string,
6 * @example ghProjectFieldsFromIssue("I_kwDOJYe5Es5qSNa2", 2, "github_pat_yadayada")
7 */
8export async function ghProjectFieldsFromIssue(
9 nodeId: string,
10 projectNumber: number,
1export function myApi(name) {
2 return "hi " + name;
3}
1import { untitled_ivoryPuma } from "https://esm.town/v/haxzie/untitled_ivoryPuma";
2
3export function myAPI(message) {
4 return "hello" + untitled_ivoryPuma();
5}
1//https://api.val.town/v1/run/vawogbemi.myApi?args=["vawogbemi","12"]
2export function myApi(name, age) {
3 return { "hi ": name, "im": age };
4}
1export function myApi(name) {
2 return "hi " + name;
3}
A helper function to build a file's email
Simple functional CSS library for Val Town
LangChain (https://langchain.com) Ambassador, KubeSphere (https://kubesphere.io) Ambassador, CNCF OpenFunction (https://openfunction.dev) TOC Member.
import { OpenAI } from "https://esm.town/v/std/openai";
export default async function(req: Request): Promise<Response> {
if (req.method === "OPTIONS") {
return new Response(null, {
headers: {
"Access-Control-Allow-Origin": "*",