/** * @file /src/utils/object.ts * @name Object * @description Utility functions for object manipulation. */ /** * Wrap JSON.parse. Checks if the value needs to be parsed before attempting to parse it. * Handles errors by returning the original value if it cannot be parsed. * * @param value - The value to parse. * @returns - The parsed value or the original value if it does not need to be parsed. */ export declare const wrapJSONParse: (value: any) => any; //# sourceMappingURL=object.d.ts.map