| 13 | props.entities; |
| 14 | |
| 15 | const isPromise = obj => { |
| 16 | return !!( |
| 17 | obj && |
| 18 | obj.then && |
| 19 | obj.then.constructor && |
| 20 | obj.then.call && |
| 21 | obj.then.apply |
| 22 | ); |
| 23 | }; |
| 24 | |
| 25 | export default class GameEngine extends Component { |
| 26 | constructor(props) { |
no outgoing calls
no test coverage detected