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