mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 17:16:25 +00:00
3 lines
86 B
TypeScript
3 lines
86 B
TypeScript
export function clone<T>(input: T): T {
|
|
return JSON.parse(JSON.stringify(input));
|
|
}
|