I've tried replacing a try catch block with lodash' _.attempt() to clean up my server code some
let target = (_.attempt(fs.statSync( "path" ) ) );
is returning an error when the try / catch equivalent is not
I've tried with the asynch version as well, if I'm using _.attempt() incorrectly it is not clear to me, suggestions?