noznarb's picture
Upload 4 files
3bd5401
raw
history blame
No virus
271 Bytes
const fs = require("fs");
try
{
let json = fs.readFileSync("ShareGPT_V4_unfiltered_cleaned_split.json", "utf8");
var obj = JSON.parse(json);
console.log("No problem");
}
catch (e) {
// The JSON was invalid, `e` has some further information
console.log(e);
}