export function isOptionalCallExpression(
  node: ?Object,
  opts?: Object,
): boolean {
  if (!node) return false;