mirror of
https://github.com/docmost/docmost.git
synced 2026-05-08 07:13:06 +08:00
5506eb194b
* Show actual history changes * V2 - WIP * feat: page history diff * fix: exclude content from history listing --------- Co-authored-by: Jason Norwood-Young <jason@10layer.com>
4 lines
85 B
TypeScript
4 lines
85 B
TypeScript
export function copy<T>(value: T): T {
|
|
return JSON.parse(JSON.stringify(value));
|
|
}
|