2017-11-15 19:46:47 +01:00
|
|
|
"use strict";
|
2017-11-15 20:19:15 +01:00
|
|
|
|
2017-11-16 23:08:14 +01:00
|
|
|
/*
|
|
|
|
* This file contains the main control flow.
|
|
|
|
*/
|
|
|
|
|
2017-11-15 20:09:59 +01:00
|
|
|
console.log("Let's load and preprocess all data properly.");
|
2017-11-15 19:46:47 +01:00
|
|
|
|
2017-11-16 23:32:20 +01:00
|
|
|
preprocessor.load(function(data) {
|
|
|
|
console.log("Results are in!");
|
|
|
|
console.log(data);
|
|
|
|
});
|