1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 export const optional = (validator: (value: any) => string | undefined) =>
7 value === undefined || value === null || value === '' ? undefined : validator(value);