Skip to content
Snippets Groups Projects
Commit 6214acbd authored by michael.minelli's avatar michael.minelli
Browse files

Sonar => Resolve issues

parent da76a3b3
No related branches found
No related tags found
1 merge request!2Add missing header status code (linked to backend issue #19)
class LazyVal<T> {
private val: T | undefined = undefined;
private valLoader: () => Promise<T> | T;
private readonly valLoader: () => Promise<T> | T;
constructor(valLoader: () => Promise<T> | T) {
this.valLoader = valLoader;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment