mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 15:36:25 +00:00
6 lines
218 B
TypeScript
6 lines
218 B
TypeScript
import { quickStringify } from './stringify';
|
|
|
|
export function clone<T>(input: T | null = null): T {
|
|
const stringifiedInput = quickStringify(input);
|
|
return stringifiedInput ? JSON.parse(stringifiedInput) : null;
|
|
}
|