diff --git a/lib/util/array.spec.ts b/lib/util/array.spec.ts
new file mode 100644
index 0000000000000000000000000000000000000000..57356be7de65df1acf9636fedee1203b8a02b1d6
--- /dev/null
+++ b/lib/util/array.spec.ts
@@ -0,0 +1,12 @@
+import { isNotNullOrUndefined } from './array';
+
+describe('util/array', () => {
+  it.each`
+    a                  | exp
+    ${null}            | ${false}
+    ${undefined}       | ${false}
+    ${{ name: 'foo' }} | ${true}
+  `('.isNotNullOrUndefined', ({ a, exp }) => {
+    expect(isNotNullOrUndefined(a)).toEqual(exp);
+  });
+});
diff --git a/lib/util/array.ts b/lib/util/array.ts
index 6862260bc20bc526f0d91954e99341dace7aa301..0175fabf26f8e43f4716198b737c81196ccf23f2 100644
--- a/lib/util/array.ts
+++ b/lib/util/array.ts
@@ -10,3 +10,12 @@ export function coerceArray<T>(input: T[] | null | undefined): T[] {
 export function sortNumeric(a: number, b: number): number {
   return a - b;
 }
+
+// Useful for filtering an array so that it includes values that are not null or
+// undefined. This predicate acts as a type guard so that the resulting type for
+// `values.filter(isNotNullOrUndefined)` is `T[]`.
+export function isNotNullOrUndefined<T>(
+  value: T | undefined | null
+): value is T {
+  return !is.nullOrUndefined(value);
+}