-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathquerystring.js
35 lines (28 loc) · 928 Bytes
/
querystring.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* eslint-env jquery, browser */
/*!
* jQuery UI helper JavaScript file for QueryString support
*
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* https://jquery.org/license
*/
( function( exports, $ ) {
"use strict";
var QueryString = exports.QueryString = {};
QueryString.encode = function( obj ) {
// Replace s/+/%20 to become similar to Node's QueryString result.
return $.param( obj ).replace( /\+/g, "%20" );
};
// Parse 1-depth key=val pairs string. No Arrays supported.
QueryString.decode = function( querystring ) {
var obj = {};
if ( typeof querystring !== "string" || querystring.length === 0 ) {
return obj;
}
$.each( querystring.replace( /\+/g, "%20" ).split( "&" ), function( i, pair ) {
pair = pair.split( "=" );
obj[ decodeURIComponent( pair[ 0 ] ) ] = decodeURIComponent( pair[ 1 ] );
} );
return obj;
};
} )( this, jQuery );