UNPKG

react-native-confirmation-code-field

Version:

A react-native component to input confirmation code for both Android and IOS

9 lines (8 loc) 306 B
export const isLastFilledCell = (value, index) => value != null && value.length - 2 === index; export const getSymbols = (codeValue, codeLength) => { const symbols = new Array(codeLength); for (let i = 0; i < codeLength; i++) { symbols[i] = codeValue[i] ?? ''; } return symbols; };