Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
/**
* 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;
}
};