alinea
Version:
Headless git-based CMS
15 lines (13 loc) • 309 B
JavaScript
import "../chunks/chunk-NZLE2WMY.js";
// src/core/Draft.ts
function formatDraftKey(entry) {
return `${entry.id}.${entry.locale ?? ""}`;
}
function parseDraftKey(key) {
const [entryId, locale] = key.split(".");
return { entryId, locale: locale || null };
}
export {
formatDraftKey,
parseDraftKey
};