(product, url)
| 1691 | } |
| 1692 | |
| 1693 | const getProductUrl = function (product, url) { |
| 1694 | if ((product !== 'COCO') && (product !== 'OZ')) { |
| 1695 | return url |
| 1696 | } |
| 1697 | const hostVal = window.location.origin |
| 1698 | if (product === 'OZ') { |
| 1699 | return `${hostVal}/ozaria${url}` |
| 1700 | } |
| 1701 | return url |
| 1702 | } |
| 1703 | |
| 1704 | const allowedLanguages = ({ |
| 1705 | [OZARIA]: ['javascript', 'python'], |
nothing calls this directly
no outgoing calls
no test coverage detected