refactor: 상대경로를 @ 시작 절대경로로

This commit is contained in:
2021-12-10 22:34:14 +09:00
parent bd42042a61
commit 975f77e907
68 changed files with 395 additions and 365 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
import { Nullable } from "./Nullable";
import { NotNullExpected } from "./NotNullExpected";
import { Nullable } from "@util/Nullable";
import { NotNullExpected } from "@util/NotNullExpected";
export function unwrap<T>(result: Nullable<T>): T {
if (result === null || result === undefined) {