mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-01-06 00:09:20 +09:00
8 lines
117 B
TypeScript
8 lines
117 B
TypeScript
|
export function ensure<T>(x: T): NonNullable<T> {
|
||
|
if (x == null) {
|
||
|
throw 'ぬるぽ';
|
||
|
} else {
|
||
|
return x!;
|
||
|
}
|
||
|
}
|