Stop stuffing helpers into Angular services
Does your angular code look like this? Then please think about it twice.
export interface UserDto {
roles: string[];
username: string;
themeIdentifier: string;
}
export class UserService {
public fetchUser(): Promise<User> {
return this....
royalzsoftware.hashnode.dev3 min read