1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { isNumber } from 'lodash';
7 const ERROR_MESSAGE = 'This field must be a float';
9 export const isFloat = (value: any) => {
10 return isNumber(value) ? undefined : ERROR_MESSAGE;