Lines Matching refs:str
58 ['str=foo&arr=1&arr=2&arr=3&somenull=&undef=',
59 'str=foo&arr=1&arr=2&arr=3&somenull=&undef=',
60 { 'str': 'foo',
420 function demoDecode(str) {
421 return str + str;
428 qs.parse('a=a&b=b&c=c', null, '==', { decodeURIComponent: (str) => str }),
434 function errDecode(str) {
444 function demoEncode(str) {
445 return str[0];
471 qs.unescape = (str) => {
472 return str.replace(/o/g, '_');