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
javascript:(function(){ | |
function parseNumber(_txt){ | |
let txt = _txt.split(" ")[0]; | |
let num_clean = parseFloat(txt.replace(",","")); | |
return num_clean; | |
} | |
function asset_name(_txt){ | |
let name = _txt.split(" ")[1]; | |
return name; | |
} |