spreadsheet
typeScript/javascript spreadsheet parser, with formulas.
git clone https://git.vogt.world/spreadsheet.git
Log | Files | README.md
← Commit log
commit
message
Adding TODOs
author
Ben Vogt <[email protected]>
date
2017-01-01 23:30:21
stats
1 file(s) changed, 3 insertions(+), 0 deletions(-)
files
README.md
 1diff --git a/README.md b/README.md
 2index a6641a5..f59ccc3 100644
 3--- a/README.md
 4+++ b/README.md
 5@@ -12,3 +12,6 @@ Things I should do.
 6 
 7 ### Write tests for parsing types
 8 * If I add a cell with a decimal, what's the most precision I can get?
 9+
10+### Parsing interesting values
11+* `10 + 10 + 10` should be parsed to 0, or null, not 10. We should do some regex checking before calling `parseInt`