String Calculator Kata done in Angular
Used to learn TDD
####Main Tests
- should return 0 when given an empty string
- should return numeric value of string
- should return sum of comma-delimited numbers
- should return sum of newline-delimited numbers
- should return sum of both comma and newline delimited numbers
- should ignore numbers greater than 1000
- should throw an error when there is a negative number
- should use a custom delimiter if it is in first line
- should use a multi-char custom delimiter if it is in first line
- should use multiple custom delimiters if they are in first line