forked from
tokono.ma/diffuse
A music player that connects to your cloud/distributed storage.
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}