This commit is contained in:
Tom Moor
2021-12-05 19:54:21 -08:00
parent 6e371f0d03
commit 891671a45b

View File

@@ -18,7 +18,7 @@ export const assertArray = (value: unknown, message?: string) => {
export const assertIn = (
value: string,
options: (string | null)[],
options: (string | undefined | null)[],
message?: string
) => {
if (!options.includes(value)) {