export default function isNotNull(x: T | null): x is T { return x !== null; }