(profile: string | null)
| 132 | } |
| 133 | |
| 134 | getAllForProfile(profile: string | null): SessionDefaults { |
| 135 | return this.getRawForProfile(profile); |
| 136 | } |
| 137 | |
| 138 | private getRawForProfile(profile: string | null): SessionDefaults { |
| 139 | const defaults = profile === null ? this.globalDefaults : (this.profiles[profile] ?? {}); |
no test coverage detected