Files
core/hwe/ts/util/unwrap_any.ts
T
2021-08-21 20:45:10 +09:00

11 lines
276 B
TypeScript

import { Nullable } from "./Nullable";
import { NotNullExpected } from "./NotNullExpected";
export function unwrap_any<T>(result: Nullable<unknown>): T {
if (result === null || result === undefined) {
throw new NotNullExpected();
}
return result as T;
}