Lines Matching refs:results
33 with results in the `results` property. The `meta` property of the
41 `response.results` will be assigned the input array unchanged.
46 `response.results` array.
48 If the input array contains arrays, `response.results` will contain an
79 // response.results[0] is { fruit: "Banana", color: "yellow" }
91 // response.results[0] is { fruit: "Banana", color: "yellow" }
109 // response.results[0] looks like { fruit: "BANANA", price: 1.96 }
118 @return {Object} An Object with properties `results` and `meta`
123 data_out = {results:[],meta:{}};
127 // Parse results data
131 data_out.results = data_in;
144 * Schema-parsed list of results from full data
155 var results = [],
178 results[i] = result;
180 data_out.results = results;