Home
last modified time | relevance | path

Searched refs:Negotiator (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/npm/node_modules/negotiator/
Dindex.js21 module.exports = Negotiator;
22 module.exports.Negotiator = Negotiator;
30 function Negotiator(request) { class
31 if (!(this instanceof Negotiator)) {
32 return new Negotiator(request);
38 Negotiator.prototype.charset = function charset(available) {
43 Negotiator.prototype.charsets = function charsets(available) {
47 Negotiator.prototype.encoding = function encoding(available) {
52 Negotiator.prototype.encodings = function encodings(available) {
56 Negotiator.prototype.language = function language(available) {
[all …]
DHISTORY.md54 * Remove dynamic building of Negotiator class
/third_party/node/deps/npm/node_modules/make-fetch-happen/lib/cache/
Dpolicy.js2 const Negotiator = require('negotiator') constant
96 const negotiatorA = new Negotiator(this.request)
97 const negotiatorB = new Negotiator(_req)
/third_party/curl/tests/
Dnegtelnetserver.py85 neg = Negotiator(self.request)
124 class Negotiator(object): class