Commit d18b8474 authored by Sebastian Malton's avatar Sebastian Malton
Browse files

remove duplicate license header

Signed-off-by: default avatarSebastian Malton <sebastian@malton.name>
parent 627baf9d
Showing with 0 additions and 4 deletions
+0 -4
......@@ -6,10 +6,6 @@ import type { IComputedValue } from "mobx";
import { runInAction, when } from "mobx";
import type { Disposer } from "./disposer";
/**
* Copyright (c) OpenLens Authors. All rights reserved.
* Licensed under MIT License. See LICENSE in root directory for more information.
*/
export async function waitUntilDefinied<T>(getter: (() => T | null | undefined) | IComputedValue<T | null | undefined>, opts?: { timeout?: number }): Promise<T> {
return new Promise<T>((resolve, reject) => {
let res: T | null | undefined;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment