'use strict'; import type { FontVariant } from 'react-native'; import { FONT_WEIGHT_MAPPINGS } from '../../../constants'; import type { ValueProcessor } from '../types'; export const processFontWeight: ValueProcessor = (value) => { if (typeof value === 'number' || !isNaN(+value)) { return String(value); } if (value in FONT_WEIGHT_MAPPINGS) { return FONT_WEIGHT_MAPPINGS[value as keyof typeof FONT_WEIGHT_MAPPINGS]; } }; export const processFontVariant: ValueProcessor< ReadonlyArray | string // @ts-expect-error Implementation will be fixed in the next PR > = (value) => value.join(', ');