mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-04 13:56:44 -06:00
c1514ce91d
Fix #13290
11 lines
298 B
TypeScript
11 lines
298 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
export function safeParseFloat(str: unknown): number | null {
|
|
if (typeof str !== 'string' || str === '') return null;
|
|
const num = parseFloat(str);
|
|
if (isNaN(num)) return null;
|
|
return num;
|
|
}
|