@apocaliss92/nodelink-js 0.6.3 → 0.6.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -689,6 +689,7 @@ function readCache(uid, now) {
689
689
  }
690
690
  async function getServerBinding(uid, options = {}) {
691
691
  if (!uid || typeof uid !== "string") return void 0;
692
+ uid = uid.toUpperCase();
692
693
  const now = Date.now();
693
694
  const cached = readCache(uid, now);
694
695
  if (cached?.kind === "ok") return cached.response;
@@ -24704,7 +24705,7 @@ function selectViableUdpMethods(hasUid, methods = ALL_UDP_DISCOVERY_METHODS) {
24704
24705
  return methods.filter((m) => m === "local-direct");
24705
24706
  }
24706
24707
  function normalizeUid(uid) {
24707
- const v = uid?.trim();
24708
+ const v = uid?.trim().toUpperCase();
24708
24709
  return v ? v : void 0;
24709
24710
  }
24710
24711
  function maskUid(uid) {
@@ -25496,4 +25497,4 @@ export {
25496
25497
  tcpReachabilityProbe,
25497
25498
  autoDetectDeviceType
25498
25499
  };
25499
- //# sourceMappingURL=chunk-Q4AXRV2G.js.map
25500
+ //# sourceMappingURL=chunk-UL34MR4L.js.map