SILENT KILLERPanel

Current Path: > > lib > node_modules > npm > node_modules > request > > lib


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //lib/node_modules/npm/node_modules/request//lib

NameTypeSizeLast ModifiedActions
auth.js File 4774 bytes March 10 2021 14:36:37.
cookies.js File 974 bytes March 10 2021 14:36:37.
getProxyFromURI.js File 2241 bytes March 10 2021 14:36:37.
har.js File 4806 bytes March 10 2021 14:36:37.
hawk.js File 2750 bytes March 10 2021 14:36:37.
helpers.js File 1411 bytes March 10 2021 14:36:37.
multipart.js File 2674 bytes March 10 2021 14:36:37.
oauth.js File 4136 bytes March 10 2021 14:36:37.
querystring.js File 1334 bytes March 10 2021 14:36:37.
redirect.js File 4635 bytes March 10 2021 14:36:37.
tunnel.js File 4416 bytes March 10 2021 14:36:37.

Reading File: //lib/node_modules/npm/node_modules/request//lib/querystring.js

'use strict'

var qs = require('qs')
var querystring = require('querystring')

function Querystring (request) {
  this.request = request
  this.lib = null
  this.useQuerystring = null
  this.parseOptions = null
  this.stringifyOptions = null
}

Querystring.prototype.init = function (options) {
  if (this.lib) { return }

  this.useQuerystring = options.useQuerystring
  this.lib = (this.useQuerystring ? querystring : qs)

  this.parseOptions = options.qsParseOptions || {}
  this.stringifyOptions = options.qsStringifyOptions || {}
}

Querystring.prototype.stringify = function (obj) {
  return (this.useQuerystring)
    ? this.rfc3986(this.lib.stringify(obj,
      this.stringifyOptions.sep || null,
      this.stringifyOptions.eq || null,
      this.stringifyOptions))
    : this.lib.stringify(obj, this.stringifyOptions)
}

Querystring.prototype.parse = function (str) {
  return (this.useQuerystring)
    ? this.lib.parse(str,
      this.parseOptions.sep || null,
      this.parseOptions.eq || null,
      this.parseOptions)
    : this.lib.parse(str, this.parseOptions)
}

Querystring.prototype.rfc3986 = function (str) {
  return str.replace(/[!'()*]/g, function (c) {
    return '%' + c.charCodeAt(0).toString(16).toUpperCase()
  })
}

Querystring.prototype.unescape = querystring.unescape

exports.Querystring = Querystring

SILENT KILLER Tool