()
| 1 | import RSVP from 'rsvp'; |
| 2 | |
| 3 | export function initialize() { |
| 4 | // async/await is using window.Promise by default and we want async/await to |
| 5 | // use RSVP instead which is properly integrated with Ember's runloop |
| 6 | window.Promise = RSVP.Promise; |
| 7 | } |
| 8 | |
| 9 | export default { initialize }; |
nothing calls this directly
no outgoing calls
no test coverage detected