(content)
| 23617 | // ======= |
| 23618 | |
| 23619 | function escapeHelper(content) { |
| 23620 | return content |
| 23621 | .replace(/&/g, '&') |
| 23622 | .replace(/</g, '<') |
| 23623 | .replace(/>/g, '>') |
| 23624 | .replace(/"/g, '"') |
| 23625 | .replace(/'/g, '''); |
| 23626 | } |
| 23627 | |
| 23628 | /** |
| 23629 | * Writes the contents of a Table object to a file. Defaults to a |