(str)
| 615 | } |
| 616 | |
| 617 | function htmlEntities(str) |
| 618 | { |
| 619 | return String(str).replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"'); |
| 620 | } |
| 621 | |
| 622 | function htmlQuote(str) |
| 623 | { |
no outgoing calls
no test coverage detected