/
githubmirror
/
wp-calypso
Обзор
Документация
Войти
/
githubmirror
/
wp-calypso
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
packages/api-core/src/normalize-utils.ts
10 строк
321 B
Payton Swick
Multi-Site Dashboard: Add API fetches needed by the purchase cancel flow (#106729)
29 окт 2025, 17:12
Не верифицирован
29 окт 2025, 17:12
e84914e
Код
Авторство
О чём код?
/** * Converts a value to a number if it's a string representation of a number. * Preserves null, undefined, and actual numbers as-is. */ export function toNumber< T >( value: T ): T { if ( typeof value === 'string' && value !== '' && ! isNaN( Number( value ) ) ) { return Number( value ) as T; } return value; }