This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
The goal is to identify each column for the type that is | |
and then convert the cells to numbers. | |
To identify it, we need to ignore the first few rows which will be headers.We could probably be safe and just skip the first | |
4 rows and start there. | |
*/ | |
function getUnique_(values) { | |
var o = {}, a = [], i, e; |