From a166369062f1342a69d90fc8c64ecfde7b45235f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E5=BE=B7=E6=BA=90?= <0268000105@zte.com.cn> Date: Wed, 23 Oct 2019 11:06:53 +0800 Subject: [PATCH] fix escape and unescape function not found --- src/tools/querystring/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/tools/querystring/index.js b/src/tools/querystring/index.js index e8ed0c140..029f82366 100644 --- a/src/tools/querystring/index.js +++ b/src/tools/querystring/index.js @@ -39,7 +39,6 @@ export const stringify = function (obj, sep, eq, arrayKey) { var buf = [], key, val; - var escape = escape; for (key in obj) { if (!hasOwnProperty.call(obj, key)) continue; @@ -95,7 +94,6 @@ export const parse = function (str, sep, eq) { var pairs = str.split(sep || '&'); eq = eq || '='; - var unescape = unescape; for (var i = 0; i < pairs.length; i++) {