UNPKG

expo-barcode-generator

Version:

A React Native barcode generator compatible with Expo

10 lines (9 loc) 239 B
export function getMaximumHeightOfEncodings(encodings) { let maxHeight = 0; for (let i = 0; i < encodings.length; i++) { if (encodings[i].height > maxHeight) { maxHeight = encodings[i].height; } } return maxHeight; }