1import { email } from "https://esm.town/v/std/email?v=9";
2
3export async function errorReport(name) {
4 await email({ text: name });
5}
1import { fetch } from "https://esm.town/v/std/fetch";
2
3export let pageIncludes = async function (url, str) {
4 const f = await fetch(url);
5 const t = await f.text();
1export function formatCurrency(
2 amount: number,
3 decimalDigits: number = 2,
1export function myApi(name) {
2 return "hi " + name;
3}
1export function myApi(name) {
2 return "hi " + name;
3}
1export function myApi(name) {
2 return "hi " + name;
3}
1export async function emailTest() {
2 console.email("test email");
3 return "emailed";
1export async function ghAddAssigneesToAssignable(
2 assignableId: string,
3 assigneeIds: string[],
1export function test(a) {
2 return a * a;
3}
2import { rule } from "https://esm.town/v/cescyang/rule";
3
4export async function checkAndroidBingApps() {
5 const { default: axios } = await import("npm:axios");
6 const url =
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": "*",