Lines Matching full:encode
2 const strictUriEncode = require('strict-uri-encode');
16 return [...result, [encode(key, options), '[', index, ']'].join('')];
21 [encode(key, options), '[', encode(index, options), ']=', encode(value, options)].join('')
32 return [...result, [encode(key, options), '[]'].join('')];
35 return [...result, [encode(key, options), '[]=', encode(value, options)].join('')];
45 return [[encode(key, options), '=', encode(value, options)].join('')];
48 return [[result, encode(value, options)].join(',')];
58 return [...result, encode(key, options)];
61 return [...result, [encode(key, options), '=', encode(value, options)].join('')];
125 function encode(value, options) { function
126 if (options.encode) {
240 encode: true, property
260 return encode(key, options);
269 return encode(key, options) + '=' + encode(value, options);