1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 export const ERROR_MESSAGE = 'This field is required.';
7 export const require: any = (value: string) => {
8 return value && value.length > 0 ? undefined : ERROR_MESSAGE;