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

package.dist-es.escape-uri.js Maven / Gradle / Ivy

export const escapeUri = (uri) => encodeURIComponent(uri).replace(/[!'()*]/g, hexEncode);
const hexEncode = (c) => `%${c.charCodeAt(0).toString(16).toUpperCase()}`;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy