A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4 14 lines 342 B view raw
1import * as Automerge from "@automerge/automerge"; 2import { base64 } from "iso-base/rfc4648"; 3 4/** 5 * Generate a new collection document. 6 */ 7export function initCollectionDoc() { 8 const doc = Automerge.change(Automerge.init(), (doc) => { 9 doc.collection = []; 10 }); 11 12 const bytes = Automerge.save(doc); 13 return base64.encode(bytes); 14}