]> git.arvados.org - arvados.git/blob - src/validators/is-number.tsx
19465: Replaces hover-to-scroll with click-to-scroll behavior in MPV button bar
[arvados.git] / src / validators / is-number.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { isNumber as isNum } from 'lodash';
6 const ERROR_MESSAGE = 'This field can only contain numeric values';
7
8 export const isNumber = (value: any) => {
9     return !isNaN(value) && isNum(value) ? undefined : ERROR_MESSAGE;
10 };