UNPKG

195 BJavaScriptView Raw
1export function extendedEncodeURIComponent(str) {
2 return encodeURIComponent(str).replace(/[!'()*]/g, function (c) {
3 return "%" + c.charCodeAt(0).toString(16).toUpperCase();
4 });
5}