reddit-simple-client
Version:
Simple module for interacting with Reddit, using oauth to authenticate to the reddit api
17 lines (15 loc) • 403 B
JavaScript
import log from './log.js';
/**
* Simple wrapper to try and parse JSON using 'JSON'.
* Will rethrow any exception along with logging the data we failed to parse
*/
export default function parseJSON(data) {
try {
const jsonData = JSON.parse(data);
return jsonData;
} catch(e) {
log.error('Failed to parse json data! Data we failed to parse:');
log.error(data);
throw e;
}
}