In the following block of heros code, curly braces are wrapped:
export class InMemoryDataService implements InMemoryDbService { createDb() { let heroes = [ {id: 11, name: 'Mr. Nice'}, {id: 12, name: 'Narco'}, ... ]; return {heroes}; } }
In particular, for this?
source share