In Angular 9 the injectable decorator option providedIn has a new value called any. What is the difference between root and any?
Is a service considered a singleton in the case that I use any?
@Injectable({providedIn: 'any'})
class UsefulService {
}
