Searched refs:Negotiator (Results 1 – 4 of 4) sorted by relevance
21 module.exports = Negotiator;22 module.exports.Negotiator = Negotiator;30 function Negotiator(request) { class31 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 …]
54 * Remove dynamic building of Negotiator class
2 const Negotiator = require('negotiator') constant96 const negotiatorA = new Negotiator(this.request)97 const negotiatorB = new Negotiator(_req)
85 neg = Negotiator(self.request)124 class Negotiator(object): class