Versions

  • v5

    10/23/2023
    Open: Version
    Changes from v4 to v5
    +3
    -1
    export let dailyCat = async () => {
    const url = @cole.fetchCat();
    const html = `Here's a random cat: <img src="${url}">`;
    console.email({ html }, "random cat");
    };
    import { fetchCat } from "https://esm.town/v/cole/fetchCat";

    export let dailyCat = async () => {
    const url = fetchCat();
    const html = `Here's a random cat: <img src="${url}">`;
    console.email({ html }, "random cat");
    };
  • v4

    3/7/2023
    Open: Version
    Changes from v3 to v4
    +1
    -2
    export dailyCat = async () => {
    const url = @cole.fetchCat();
    const html = `Here's a random cat: <img src="${url}">`;
    console.email({ html }, "random cat");
    return;
    };
    export let dailyCat = async () => {
    const url = @cole.fetchCat();
    const html = `Here's a random cat: <img src="${url}">`;
    console.email({ html }, "random cat");
    };
  • v3

    3/7/2023
    Open: Version
    Changes from v2 to v3
    +3
    -2
    export dailyCat = @cole.fetchCat().then((url) => {
    const html = `Here's a random cat: <img src="${url}">`;
    console.email({ html }, "random cat");
    return;
    });
    export dailyCat = async () => {
    const url = @cole.fetchCat();
    const html = `Here's a random cat: <img src="${url}">`;
    console.email({ html }, "random cat");
    return;
    };
  • v2

    3/7/2023
    Open: Version
    Changes from v1 to v2
    +1
    -0
    export dailyCat = @cole.fetchCat().then((url) => {
    const html = `Here's a random cat: <img src="${url}">`;
    console.email({ html }, "random cat");
    });
    export dailyCat = @cole.fetchCat().then((url) => {
    const html = `Here's a random cat: <img src="${url}">`;
    console.email({ html }, "random cat");
    return;
    });
  • v1

    3/7/2023
    Open: Version
    Changes from v0 to v1
    +0
    -0
    ⦚ 4 unchanged lines ⦚
    ⦚ 4 unchanged lines ⦚
  • v0

    3/7/2023
    Open: Version
    +4
    -0

    export dailyCat = @cole.fetchCat().then((url) => {
    const html = `Here's a random cat: <img src="${url}">`;
    console.email({ html }, "random cat");
    });
1
Next
Updated: October 23, 2023