/
githubmirror
/
wp-calypso
Обзор
Документация
Войти
/
githubmirror
/
wp-calypso
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
apps/notifications/src/panel/utils/parse-json.js
12 строк
255 B
Calypso Bot
chore(deps): update linters (major) (#80830)
27 сен 2023, 16:26
Не верифицирован
27 сен 2023, 16:26
e1f240e
Код
Авторство
О чём код?
/** * Attempts to parse a string as JSON * @param {?string} input possible JSON string * @returns {*} parsed data or null on failure */ export const parseJson = ( input ) => { try { return JSON.parse( input ); } catch ( e ) { return null; } };