Skip to content

Commit

Permalink
build: bundle 3.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
posva committed Aug 7, 2020
1 parent 7b3328d commit b35ae07
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 20 deletions.
8 changes: 4 additions & 4 deletions dist/vue-router.common.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-router v3.4.1
* vue-router v3.4.2
* (c) 2020 Evan You
* @license MIT
*/
Expand Down Expand Up @@ -217,7 +217,7 @@ function resolveQuery (
return parsedQuery
}

var castQueryParamValue = function (value) { return (value == null ? value : String(value)); };
var castQueryParamValue = function (value) { return (value == null || typeof value === 'object' ? value : String(value)); };

function parseQuery (query) {
var res = {};
Expand Down Expand Up @@ -980,7 +980,7 @@ function normalizeLocation (
}

// relative params
if (!next.path && next.params && current) {
if (!next.path && (next.params || next.query || next.hash) && current) {
next = extend({}, next);
next._normalized = true;
var params$1 = extend(extend({}, current.params), next.params);
Expand Down Expand Up @@ -3044,7 +3044,7 @@ function createHref (base, fullPath, mode) {
}

VueRouter.install = install;
VueRouter.version = '3.4.1';
VueRouter.version = '3.4.2';
VueRouter.isNavigationFailure = isNavigationFailure;
VueRouter.NavigationFailureType = NavigationFailureType;

Expand Down
8 changes: 4 additions & 4 deletions dist/vue-router.esm.browser.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-router v3.4.1
* vue-router v3.4.2
* (c) 2020 Evan You
* @license MIT
*/
Expand Down Expand Up @@ -209,7 +209,7 @@ function resolveQuery (
return parsedQuery
}

const castQueryParamValue = value => (value == null ? value : String(value));
const castQueryParamValue = value => (value == null || typeof value === 'object' ? value : String(value));

function parseQuery (query) {
const res = {};
Expand Down Expand Up @@ -965,7 +965,7 @@ function normalizeLocation (
}

// relative params
if (!next.path && next.params && current) {
if (!next.path && (next.params || next.query || next.hash) && current) {
next = extend({}, next);
next._normalized = true;
const params = extend(extend({}, current.params), next.params);
Expand Down Expand Up @@ -3010,7 +3010,7 @@ function createHref (base, fullPath, mode) {
}

VueRouter.install = install;
VueRouter.version = '3.4.1';
VueRouter.version = '3.4.2';
VueRouter.isNavigationFailure = isNavigationFailure;
VueRouter.NavigationFailureType = NavigationFailureType;

Expand Down
4 changes: 2 additions & 2 deletions dist/vue-router.esm.browser.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/vue-router.esm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-router v3.4.1
* vue-router v3.4.2
* (c) 2020 Evan You
* @license MIT
*/
Expand Down Expand Up @@ -215,7 +215,7 @@ function resolveQuery (
return parsedQuery
}

var castQueryParamValue = function (value) { return (value == null ? value : String(value)); };
var castQueryParamValue = function (value) { return (value == null || typeof value === 'object' ? value : String(value)); };

function parseQuery (query) {
var res = {};
Expand Down Expand Up @@ -978,7 +978,7 @@ function normalizeLocation (
}

// relative params
if (!next.path && next.params && current) {
if (!next.path && (next.params || next.query || next.hash) && current) {
next = extend({}, next);
next._normalized = true;
var params$1 = extend(extend({}, current.params), next.params);
Expand Down Expand Up @@ -3042,7 +3042,7 @@ function createHref (base, fullPath, mode) {
}

VueRouter.install = install;
VueRouter.version = '3.4.1';
VueRouter.version = '3.4.2';
VueRouter.isNavigationFailure = isNavigationFailure;
VueRouter.NavigationFailureType = NavigationFailureType;

Expand Down
8 changes: 4 additions & 4 deletions dist/vue-router.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* vue-router v3.4.1
* vue-router v3.4.2
* (c) 2020 Evan You
* @license MIT
*/
Expand Down Expand Up @@ -221,7 +221,7 @@
return parsedQuery
}

var castQueryParamValue = function (value) { return (value == null ? value : String(value)); };
var castQueryParamValue = function (value) { return (value == null || typeof value === 'object' ? value : String(value)); };

function parseQuery (query) {
var res = {};
Expand Down Expand Up @@ -984,7 +984,7 @@
}

// relative params
if (!next.path && next.params && current) {
if (!next.path && (next.params || next.query || next.hash) && current) {
next = extend({}, next);
next._normalized = true;
var params$1 = extend(extend({}, current.params), next.params);
Expand Down Expand Up @@ -3048,7 +3048,7 @@
}

VueRouter.install = install;
VueRouter.version = '3.4.1';
VueRouter.version = '3.4.2';
VueRouter.isNavigationFailure = isNavigationFailure;
VueRouter.NavigationFailureType = NavigationFailureType;

Expand Down
4 changes: 2 additions & 2 deletions dist/vue-router.min.js

Large diffs are not rendered by default.

0 comments on commit b35ae07

Please sign in to comment.