(s)
| 7 | import { fetchCSV } from '../core/CSV'; |
| 8 | |
| 9 | function clean_integer(s) { |
| 10 | if (s) { |
| 11 | return s.replace(/[\s,]+/g, ''); // doesn't handle '.' as comma separator, but how to distinguish that from decimal separator? |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | export function parseGoogleSpreadsheetURL(url) { |
| 16 | let parts = { |
no outgoing calls
no test coverage detected