File size: 412 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import type { FieldArrayMethodProps, InternalFieldName } from '../types';
import isUndefined from '../utils/isUndefined';
export default (
name: InternalFieldName,
index: number,
options: FieldArrayMethodProps = {},
): string =>
options.shouldFocus || isUndefined(options.shouldFocus)
? options.focusName ||
`${name}.${isUndefined(options.focusIndex) ? index : options.focusIndex}.`
: '';
|