Background: I have been tasked to help resolve an issue with the following error:
'Promise' is undefined'
Which is part of our sessionsmodel.js script:
return Promise.all(promises);
promises
is an array of actions that need to happen and if any fail it is rejected.
Question: Based on my research IE does not support Promise
so is there a work around that can be applied to this return value that will accomplish the same thing?