Sunday, July 26, 2015

Looking for a coding template

Testing some blogger Templates for now

I didn't find a template for coders yet.



// See the "Take it slow" appendix
  getHeroesSlowly() {
    return new Promise<Hero[]>(resolve =>
      setTimeout(()=>resolve(HEROES), 2000) // 2 seconds
    );
  }