| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609 | (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.Qs = f()}})(function(){var define,module,exports;return (function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){'use strict';var replace = String.prototype.replace;var percentTwenties = /%20/g;module.exports = {    'default': 'RFC3986',    formatters: {        RFC1738: function (value) {            return replace.call(value, percentTwenties, '+');        },        RFC3986: function (value) {            return String(value);        }    },    RFC1738: 'RFC1738',    RFC3986: 'RFC3986'};},{}],2:[function(require,module,exports){'use strict';var stringify = require('./stringify');var parse = require('./parse');var formats = require('./formats');module.exports = {    formats: formats,    parse: parse,    stringify: stringify};},{"./formats":1,"./parse":3,"./stringify":4}],3:[function(require,module,exports){'use strict';var utils = require('./utils');var has = Object.prototype.hasOwnProperty;var defaults = {    allowDots: false,    allowPrototypes: false,    arrayLimit: 20,    decoder: utils.decode,    delimiter: '&',    depth: 5,    parameterLimit: 1000,    plainObjects: false,    strictNullHandling: false};var parseValues = function parseQueryStringValues(str, options) {    var obj = {};    var parts = str.split(options.delimiter, options.parameterLimit === Infinity ? undefined : options.parameterLimit);    for (var i = 0; i < parts.length; ++i) {        var part = parts[i];        var pos = part.indexOf(']=') === -1 ? part.indexOf('=') : part.indexOf(']=') + 1;        var key, val;        if (pos === -1) {            key = options.decoder(part);            val = options.strictNullHandling ? null : '';        } else {            key = options.decoder(part.slice(0, pos));            val = options.decoder(part.slice(pos + 1));        }        if (has.call(obj, key)) {            obj[key] = [].concat(obj[key]).concat(val);        } else {            obj[key] = val;        }    }    return obj;};var parseObject = function parseObjectRecursive(chain, val, options) {    if (!chain.length) {        return val;    }    var root = chain.shift();    var obj;    if (root === '[]' && options.parseArrays) {        obj = [];        obj = obj.concat(parseObject(chain, val, options));    } else {        obj = options.plainObjects ? Object.create(null) : {};        var cleanRoot = root.charAt(0) === '[' && root.charAt(root.length - 1) === ']' ? root.slice(1, -1) : root;        var index = parseInt(cleanRoot, 10);        if (!options.parseArrays && cleanRoot === '') {            obj = { 0: val };        } else if (            !isNaN(index)            && root !== cleanRoot            && String(index) === cleanRoot            && index >= 0            && (options.parseArrays && index <= options.arrayLimit)        ) {            obj = [];            obj[index] = parseObject(chain, val, options);        } else if (cleanRoot !== '__proto__') {            obj[cleanRoot] = parseObject(chain, val, options);        }    }    return obj;};var parseKeys = function parseQueryStringKeys(givenKey, val, options) {    if (!givenKey) {        return;    }    // Transform dot notation to bracket notation    var key = options.allowDots ? givenKey.replace(/\.([^.[]+)/g, '[$1]') : givenKey;    // The regex chunks    var brackets = /(\[[^[\]]*])/;    var child = /(\[[^[\]]*])/g;    // Get the parent    var segment = brackets.exec(key);    var parent = segment ? key.slice(0, segment.index) : key;    // Stash the parent if it exists    var keys = [];    if (parent) {        // If we aren't using plain objects, optionally prefix keys that would overwrite object prototype properties        if (!options.plainObjects && has.call(Object.prototype, parent)) {            if (!options.allowPrototypes) {                return;            }        }        keys.push(parent);    }    // Loop through children appending to the array until we hit depth    var i = 0;    while ((segment = child.exec(key)) !== null && i < options.depth) {        i += 1;        if (!options.plainObjects && has.call(Object.prototype, segment[1].slice(1, -1))) {            if (!options.allowPrototypes) {                return;            }        }        keys.push(segment[1]);    }    // If there's a remainder, just add whatever is left    if (segment) {        keys.push('[' + key.slice(segment.index) + ']');    }    return parseObject(keys, val, options);};module.exports = function (str, opts) {    var options = opts || {};    if (options.decoder !== null && options.decoder !== undefined && typeof options.decoder !== 'function') {        throw new TypeError('Decoder has to be a function.');    }    options.delimiter = typeof options.delimiter === 'string' || utils.isRegExp(options.delimiter) ? options.delimiter : defaults.delimiter;    options.depth = typeof options.depth === 'number' ? options.depth : defaults.depth;    options.arrayLimit = typeof options.arrayLimit === 'number' ? options.arrayLimit : defaults.arrayLimit;    options.parseArrays = options.parseArrays !== false;    options.decoder = typeof options.decoder === 'function' ? options.decoder : defaults.decoder;    options.allowDots = typeof options.allowDots === 'boolean' ? options.allowDots : defaults.allowDots;    options.plainObjects = typeof options.plainObjects === 'boolean' ? options.plainObjects : defaults.plainObjects;    options.allowPrototypes = typeof options.allowPrototypes === 'boolean' ? options.allowPrototypes : defaults.allowPrototypes;    options.parameterLimit = typeof options.parameterLimit === 'number' ? options.parameterLimit : defaults.parameterLimit;    options.strictNullHandling = typeof options.strictNullHandling === 'boolean' ? options.strictNullHandling : defaults.strictNullHandling;    if (str === '' || str === null || typeof str === 'undefined') {        return options.plainObjects ? Object.create(null) : {};    }    var tempObj = typeof str === 'string' ? parseValues(str, options) : str;    var obj = options.plainObjects ? Object.create(null) : {};    // Iterate over the keys and setup the new object    var keys = Object.keys(tempObj);    for (var i = 0; i < keys.length; ++i) {        var key = keys[i];        var newObj = parseKeys(key, tempObj[key], options);        obj = utils.merge(obj, newObj, options);    }    return utils.compact(obj);};},{"./utils":5}],4:[function(require,module,exports){'use strict';var utils = require('./utils');var formats = require('./formats');var arrayPrefixGenerators = {    brackets: function brackets(prefix) {        return prefix + '[]';    },    indices: function indices(prefix, key) {        return prefix + '[' + key + ']';    },    repeat: function repeat(prefix) {        return prefix;    }};var isArray = Array.isArray;var push = Array.prototype.push;var pushToArray = function (arr, valueOrArray) {    push.apply(arr, isArray(valueOrArray) ? valueOrArray : [valueOrArray]);};var toISO = Date.prototype.toISOString;var defaults = {    delimiter: '&',    encode: true,    encoder: utils.encode,    encodeValuesOnly: false,    serializeDate: function serializeDate(date) {        return toISO.call(date);    },    skipNulls: false,    strictNullHandling: false};var stringify = function stringify(    object,    prefix,    generateArrayPrefix,    strictNullHandling,    skipNulls,    encoder,    filter,    sort,    allowDots,    serializeDate,    formatter,    encodeValuesOnly) {    var obj = object;    if (typeof filter === 'function') {        obj = filter(prefix, obj);    } else if (obj instanceof Date) {        obj = serializeDate(obj);    }    if (obj === null) {        if (strictNullHandling) {            return encoder && !encodeValuesOnly ? encoder(prefix) : prefix;        }        obj = '';    }    if (typeof obj === 'string' || typeof obj === 'number' || typeof obj === 'boolean' || utils.isBuffer(obj)) {        if (encoder) {            var keyValue = encodeValuesOnly ? prefix : encoder(prefix);            return [formatter(keyValue) + '=' + formatter(encoder(obj))];        }        return [formatter(prefix) + '=' + formatter(String(obj))];    }    var values = [];    if (typeof obj === 'undefined') {        return values;    }    var objKeys;    if (isArray(filter)) {        objKeys = filter;    } else {        var keys = Object.keys(obj);        objKeys = sort ? keys.sort(sort) : keys;    }    for (var i = 0; i < objKeys.length; ++i) {        var key = objKeys[i];        if (skipNulls && obj[key] === null) {            continue;        }        if (isArray(obj)) {            pushToArray(values, stringify(                obj[key],                generateArrayPrefix(prefix, key),                generateArrayPrefix,                strictNullHandling,                skipNulls,                encoder,                filter,                sort,                allowDots,                serializeDate,                formatter,                encodeValuesOnly            ));        } else {            pushToArray(values, stringify(                obj[key],                prefix + (allowDots ? '.' + key : '[' + key + ']'),                generateArrayPrefix,                strictNullHandling,                skipNulls,                encoder,                filter,                sort,                allowDots,                serializeDate,                formatter,                encodeValuesOnly            ));        }    }    return values;};module.exports = function (object, opts) {    var obj = object;    var options = opts || {};    if (options.encoder !== null && typeof options.encoder !== 'undefined' && typeof options.encoder !== 'function') {        throw new TypeError('Encoder has to be a function.');    }    var delimiter = typeof options.delimiter === 'undefined' ? defaults.delimiter : options.delimiter;    var strictNullHandling = typeof options.strictNullHandling === 'boolean' ? options.strictNullHandling : defaults.strictNullHandling;    var skipNulls = typeof options.skipNulls === 'boolean' ? options.skipNulls : defaults.skipNulls;    var encode = typeof options.encode === 'boolean' ? options.encode : defaults.encode;    var encoder = typeof options.encoder === 'function' ? options.encoder : defaults.encoder;    var sort = typeof options.sort === 'function' ? options.sort : null;    var allowDots = typeof options.allowDots === 'undefined' ? false : options.allowDots;    var serializeDate = typeof options.serializeDate === 'function' ? options.serializeDate : defaults.serializeDate;    var encodeValuesOnly = typeof options.encodeValuesOnly === 'boolean' ? options.encodeValuesOnly : defaults.encodeValuesOnly;    if (typeof options.format === 'undefined') {        options.format = formats['default'];    } else if (!Object.prototype.hasOwnProperty.call(formats.formatters, options.format)) {        throw new TypeError('Unknown format option provided.');    }    var formatter = formats.formatters[options.format];    var objKeys;    var filter;    if (typeof options.filter === 'function') {        filter = options.filter;        obj = filter('', obj);    } else if (isArray(options.filter)) {        filter = options.filter;        objKeys = filter;    }    var keys = [];    if (typeof obj !== 'object' || obj === null) {        return '';    }    var arrayFormat;    if (options.arrayFormat in arrayPrefixGenerators) {        arrayFormat = options.arrayFormat;    } else if ('indices' in options) {        arrayFormat = options.indices ? 'indices' : 'repeat';    } else {        arrayFormat = 'indices';    }    var generateArrayPrefix = arrayPrefixGenerators[arrayFormat];    if (!objKeys) {        objKeys = Object.keys(obj);    }    if (sort) {        objKeys.sort(sort);    }    for (var i = 0; i < objKeys.length; ++i) {        var key = objKeys[i];        if (skipNulls && obj[key] === null) {            continue;        }        pushToArray(keys, stringify(            obj[key],            key,            generateArrayPrefix,            strictNullHandling,            skipNulls,            encode ? encoder : null,            filter,            sort,            allowDots,            serializeDate,            formatter,            encodeValuesOnly        ));    }    return keys.join(delimiter);};},{"./formats":1,"./utils":5}],5:[function(require,module,exports){'use strict';var has = Object.prototype.hasOwnProperty;var hexTable = (function () {    var array = [];    for (var i = 0; i < 256; ++i) {        array.push('%' + ((i < 16 ? '0' : '') + i.toString(16)).toUpperCase());    }    return array;}());exports.arrayToObject = function (source, options) {    var obj = options && options.plainObjects ? Object.create(null) : {};    for (var i = 0; i < source.length; ++i) {        if (typeof source[i] !== 'undefined') {            obj[i] = source[i];        }    }    return obj;};exports.merge = function (target, source, options) {    if (!source) {        return target;    }    if (typeof source !== 'object') {        if (Array.isArray(target)) {            target.push(source);        } else if (target && typeof target === 'object') {            if ((options && (options.plainObjects || options.allowPrototypes)) || !has.call(Object.prototype, source)) {                target[source] = true;            }        } else {            return [target, source];        }        return target;    }    if (!target || typeof target !== 'object') {        return [target].concat(source);    }    var mergeTarget = target;    if (Array.isArray(target) && !Array.isArray(source)) {        mergeTarget = exports.arrayToObject(target, options);    }    if (Array.isArray(target) && Array.isArray(source)) {        source.forEach(function (item, i) {            if (has.call(target, i)) {                if (target[i] && typeof target[i] === 'object') {                    target[i] = exports.merge(target[i], item, options);                } else {                    target.push(item);                }            } else {                target[i] = item;            }        });        return target;    }    return Object.keys(source).reduce(function (acc, key) {        var value = source[key];        if (Object.prototype.hasOwnProperty.call(acc, key)) {            acc[key] = exports.merge(acc[key], value, options);        } else {            acc[key] = value;        }        return acc;    }, mergeTarget);};exports.decode = function (str) {    try {        return decodeURIComponent(str.replace(/\+/g, ' '));    } catch (e) {        return str;    }};exports.encode = function (str) {    // This code was originally written by Brian White (mscdex) for the io.js core querystring library.    // It has been adapted here for stricter adherence to RFC 3986    if (str.length === 0) {        return str;    }    var string = typeof str === 'string' ? str : String(str);    var out = '';    for (var i = 0; i < string.length; ++i) {        var c = string.charCodeAt(i);        if (            c === 0x2D // -            || c === 0x2E // .            || c === 0x5F // _            || c === 0x7E // ~            || (c >= 0x30 && c <= 0x39) // 0-9            || (c >= 0x41 && c <= 0x5A) // a-z            || (c >= 0x61 && c <= 0x7A) // A-Z        ) {            out += string.charAt(i);            continue;        }        if (c < 0x80) {            out = out + hexTable[c];            continue;        }        if (c < 0x800) {            out = out + (hexTable[0xC0 | (c >> 6)] + hexTable[0x80 | (c & 0x3F)]);            continue;        }        if (c < 0xD800 || c >= 0xE000) {            out = out + (hexTable[0xE0 | (c >> 12)] + hexTable[0x80 | ((c >> 6) & 0x3F)] + hexTable[0x80 | (c & 0x3F)]);            continue;        }        i += 1;        c = 0x10000 + (((c & 0x3FF) << 10) | (string.charCodeAt(i) & 0x3FF));        /* eslint operator-linebreak: [2, "before"] */        out += hexTable[0xF0 | (c >> 18)]            + hexTable[0x80 | ((c >> 12) & 0x3F)]            + hexTable[0x80 | ((c >> 6) & 0x3F)]            + hexTable[0x80 | (c & 0x3F)];    }    return out;};exports.compact = function (obj, references) {    if (typeof obj !== 'object' || obj === null) {        return obj;    }    var refs = references || [];    var lookup = refs.indexOf(obj);    if (lookup !== -1) {        return refs[lookup];    }    refs.push(obj);    if (Array.isArray(obj)) {        var compacted = [];        for (var i = 0; i < obj.length; ++i) {            if (obj[i] && typeof obj[i] === 'object') {                compacted.push(exports.compact(obj[i], refs));            } else if (typeof obj[i] !== 'undefined') {                compacted.push(obj[i]);            }        }        return compacted;    }    var keys = Object.keys(obj);    keys.forEach(function (key) {        obj[key] = exports.compact(obj[key], refs);    });    return obj;};exports.isRegExp = function (obj) {    return Object.prototype.toString.call(obj) === '[object RegExp]';};exports.isBuffer = function (obj) {    if (obj === null || typeof obj === 'undefined') {        return false;    }    return !!(obj.constructor && obj.constructor.isBuffer && obj.constructor.isBuffer(obj));};},{}]},{},[2])(2)});
 |