// classifiers/ruben/index.js
// At the top of the file
const parsed = {};
// Parse the PDF file into a list of strings
// Go through these strings one by one
for ( let i = 0; i < splitLines.length; ++i ) {
const currentLine = splitLines[ i ];
parsed[ getHash( fileName ) ][ i ] = analyze( currentLine );
}
// ...