UNPKG

recharts

Version:
7 lines 320 B
import { isWellBehavedNumber } from '../util/isWellBehavedNumber'; export function getZIndexFromUnknown(input, defaultZIndex) { if (input && typeof input === 'object' && 'zIndex' in input && typeof input.zIndex === 'number' && isWellBehavedNumber(input.zIndex)) { return input.zIndex; } return defaultZIndex; }