Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { dateMeURL } from "https://esm.town/v/stevekrouse/dateMeURL";
import { fetchTable } from "https://esm.town/v/stevekrouse/fetchTable";
export const fetchDateMeProfiles = () =>
fetchTable(
dateMeURL,
) as Promise<{
"Name": string;
"Profile": {
"text": string;
"href": string;
}[];
"Gender": ("F" | "M" | "NF") | ("F" | "M" | "NF")[];
"Interested In"?: ("F" | "M" | "NF") | ("F" | "M" | "NF")[];
"Age": string;
"Location"?: string[];
"Style"?: string[];
"Wants Kids"?: string;
"Location flexibility"?: "Flexible" | "Some" | "None";
"Community"?:
| ("EA" | "Tech" | "Rationalism")
| ("EA" | "Tech" | "Rationalism")[];
"Contact"?: string;
"Last Updated"?: string;
}[]>;
October 23, 2023