Howdy friends,
I believe there's a bug with parallel. Getting the results array works great in modern browsers, and fails miserably in ie8. I'm not exactly sure why, though I will investigate. Here's a code example to try:
async.parallel([
function(callback) {
callback(null, { a: 'b' });
}
], function(err, results) {
var i = results; //results is an empty array in ie8!!
});
Thanks!
Howdy friends,
I believe there's a bug with parallel. Getting the results array works great in modern browsers, and fails miserably in ie8. I'm not exactly sure why, though I will investigate. Here's a code example to try:
Thanks!