url-from
Version:
Type-safe URL generator with RFC3986 encoding support
13 lines (12 loc) • 350 B
JavaScript
/** RFC3986準拠のエンコード */
export function encodeRFC3986(str) {
return str && encodeURIComponent(str).replace(/[!'()*]/g, rfc3986SpecialEncoder);
}
const rfc3986SpecialEncodeTable = {
"!": "%21",
"'": "%27",
"(": "%28",
")": "%29",
"*": "%2A",
};
const rfc3986SpecialEncoder = (c) => rfc3986SpecialEncodeTable[c];