(content: string, type = 'text/plain')
| 1 | export function getEchoURL(content: string, type = 'text/plain'): string { |
| 2 | return `http://localhost:9966/echo?${new URLSearchParams({type, content})}`; |
| 3 | } |
| 4 | |
| 5 | export function getCSSEchoURL(content: string): string { |
| 6 | return getEchoURL(content, 'text/css'); |
no outgoing calls
no test coverage detected