@tanstack/react-router
Advanced tools
Comparing version 1.51.7 to 1.51.8
@@ -32,2 +32,3 @@ function encode(obj, pfx) { | ||
k = tmp.slice(0, equalIndex); | ||
k = decodeURIComponent(k); | ||
const value = tmp.slice(equalIndex + 1); | ||
@@ -41,2 +42,3 @@ if (out[k] !== void 0) { | ||
k = tmp; | ||
k = decodeURIComponent(k); | ||
out[k] = ""; | ||
@@ -43,0 +45,0 @@ } |
{ | ||
"name": "@tanstack/react-router", | ||
"version": "1.51.7", | ||
"version": "1.51.8", | ||
"description": "Modern and scalable routing for React applications", | ||
@@ -5,0 +5,0 @@ "author": "Tanner Linsley", |
@@ -71,2 +71,3 @@ // qss has been slightly modified and inlined here for our use cases (and compression's sake). We've included it as a hard dependency for MIT license attribution. | ||
k = tmp.slice(0, equalIndex) | ||
k = decodeURIComponent(k) | ||
const value = tmp.slice(equalIndex + 1) | ||
@@ -81,2 +82,3 @@ if (out[k] !== void 0) { | ||
k = tmp | ||
k = decodeURIComponent(k) | ||
out[k] = '' | ||
@@ -83,0 +85,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1481879
18492