All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ducks.api.utils.escapeUrl.ts Maven / Gradle / Ivy

The newest version!
const ESCAPED_SYMBOL = '%26'

export function escapeUrl(url: string) {
    return url.replaceAll('&', ESCAPED_SYMBOL)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy