Everyone knows that to create a new Promise, you need to define it this way:
new Promise((resolve, reject) => {
...
resolve(someValue)
})You pass a callback that defines the specific behavior of your promise.
| /*jshint globalstrict:true */ | |
| /*global angular:true */ | |
| 'use strict'; | |
| angular.module('demo', [ | |
| 'demo.controllers', | |
| 'demo.directives', | |
| 'elasticjs.service' | |
| ]); |