mirror of
https://github.com/sky-systems/sky_phone.git
synced 2026-08-31 10:18:57 +00:00
6 lines
175 B
TypeScript
6 lines
175 B
TypeScript
export function cloneJsonData<T>(value: T): T {
|
|
const serialized = JSON.stringify(value)
|
|
if (serialized === undefined) return value
|
|
return JSON.parse(serialized) as T
|
|
}
|