Versions
- Open: VersionChanges from v3 to v4+3-1// Send me a message. Use the `you` parameter so add your name.export let tell = (msg, you) => {
valilo.inbox.push({ time: Date.now(), msg, you });return 1;};import { inbox } from "https://esm.town/v/valilo/inbox";// Send me a message. Use the `you` parameter so add your name.export let tell = (msg, you) => {inbox.push({ time: Date.now(), msg, you });return 1;}; - Open: VersionChanges from v2 to v3+4-1// Send me a message. Use the `you` parameter so add your name.
export tell = (msg, you) => valilo.inbox.push({ time: Date.now(), msg, you });// Send me a message. Use the `you` parameter so add your name.export let tell = (msg, you) => {valilo.inbox.push({ time: Date.now(), msg, you });return 1;}; - Open: Version+2-0// Send me a message. Use the `you` parameter so add your name.export tell = (msg, you) => valilo.inbox.push({ time: Date.now(), msg, you });
Updated: October 23, 2023