Lines Matching refs:key
6 * without the additional support for nested data structures. Every key-value pair is
31 * supported. When set to true, the key of an
33 * to the key;.
38 // Default behavior is false; standard key notation.
40 key, i, l;
42 for (key in obj) {
43 if (obj.hasOwnProperty(key)) {
44 if (Y.Lang.isArray(obj[key])) {
45 for (i = 0, l = obj[key].length; i < l; i++) {
46 qs.push(EUC(s ? key + '[]' : key) + '=' + EUC(obj[key][i]));
50 qs.push(EUC(key) + '=' + EUC(obj[key]));