1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { isInteger as isInt } from 'lodash';
7 const ERROR_MESSAGE = 'This field can only contain integer values';
9 export const isInteger = (value: any) => {
10 return isInt(value) ? undefined : ERROR_MESSAGE;