mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
- simplify access to app logger - spruce up and make consistent log format - improve messaging
5 lines
139 B
TypeScript
5 lines
139 B
TypeScript
/**
|
|
* Serialize an object to JSON and back to a new object
|
|
*/
|
|
export const parseify = (obj: unknown) => JSON.parse(JSON.stringify(obj));
|