HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/slfopp7cb1df/public_html/home/wp-content/plugins/mailchimp-for-wp/assets/src/js/admin/url.js
function parse (url) {
  const query = {}
  const a = url.split('&')
  for (const i in a) {
    if (!a.hasOwnProperty(i)) {
      continue
    }
    const b = a[i].split('=')
    query[decodeURIComponent(b[0])] = decodeURIComponent(b[1])
  }

  return query
}

function build (data) {
  const ret = []
  for (const d in data) { ret.push(d + '=' + encodeURIComponent(data[d])) }
  return ret.join('&')
}

function setParameter (url, key, value) {
  const data = parse(url)
  data[key] = value
  return build(data)
}

module.exports = { parse, build, setParameter }