1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { blobGet } from "https://esm.town/v/andreterron/blobGet";
import { blobGetJson } from "https://esm.town/v/andreterron/blobGetJson";
import { blobSetJson } from "https://esm.town/v/andreterron/blobSetJson";
export const blobTest = await (async () => {
let key = "counter-never set";
const result = await blobGetJson(key);
// await blobSetJson(key, result ?? 0);
// const result1 = await blobGetJson(key);
// await blobSetJson(key, result + 1);
// const result2 = await blobGetJson(key);
return result;
})();