Current path: home/webdevt/www/wdp/wp-content/plugins/brizy/public/editor-client/src/utils/reader/
?? Go up: /home/webdevt/www/wdp/wp-content/plugins/brizy/public/editor-client/src/utils
import { Reader } from "./types";
export const read: Reader<unknown> = v => {
if (typeof v === "string") {
try {
return JSON.parse(v);
} catch (e) {
return undefined;
}
}
return undefined;
};