MCPcopy Create free account
hub / github.com/node-modules/utility / decodeURIComponent

Function decodeURIComponent

src/web.ts:47–53  ·  view source on GitHub ↗
(encodeText: string)

Source from the content-addressed store, hash-verified

45 * @return {String} URL decode original string.
46 */
47export function decodeURIComponent(encodeText: string): string {
48 try {
49 return global.decodeURIComponent(encodeText);
50 } catch {
51 return encodeText;
52 }
53}

Callers 2

string.test.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…