Finish room diffing and syncing. All tests pass

This commit is contained in:
Cadence Ember
2023-05-06 01:25:15 +12:00
parent f09eeccef3
commit 3fbe7eed6e
13 changed files with 658 additions and 529 deletions

View File

@@ -43,7 +43,7 @@ async function customEval(input, _context, _filename, callback) {
const output = util.inspect(result, false, depth, true)
return callback(null, output)
} catch (e) {
return callback(null, util.inspect(e, true, 100, true))
return callback(null, util.inspect(e, false, 100, true))
}
}