MCPcopy
hub / github.com/socketio/socket.io / queryKey

Function queryKey

packages/socket.io/client-dist/socket.io.js:1644–1652  ·  view source on GitHub ↗
(uri, query)

Source from the content-addressed store, hash-verified

1642 return names;
1643 }
1644 function queryKey(uri, query) {
1645 var data = {};
1646 query.replace(/(?:^|&)([^&=]*)=?([^&]*)/g, function ($0, $1, $2) {
1647 if ($1) {
1648 data[$1] = $2;
1649 }
1650 });
1651 return data;
1652 }
1653
1654 var withEventListeners = typeof addEventListener === "function" && typeof removeEventListener === "function";
1655 var OFFLINE_EVENT_LISTENERS = [];

Callers 1

parseFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected