Files
Desktop/ts/types/SchemaVersion.ts
2025-09-19 13:05:51 -07:00

11 lines
257 B
TypeScript

// Copyright 2018 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import lodash from 'lodash';
const { isNumber } = lodash;
export const isValid = (value: unknown): value is number => {
return Boolean(isNumber(value) && value >= 0);
};