UNPKG

react-native-vision-camera

Version:

VisionCamera is the fastest and most powerful Camera for react-native.

17 lines (16 loc) 516 B
/** * Returns `true` if the given {@linkcode ScannedObject} * is a {@linkcode ScannedCode} - a subclass of {@linkcode ScannedObject} * that provides a machine readable code with corner points. */ export function isScannedCode(object) { return 'value' in object; } /** * Returns `true` if the given {@linkcode ScannedObject} * is a {@linkcode ScannedFace} - a subclass of {@linkcode ScannedObject} * that provides face metadata. */ export function isScannedFace(object) { return 'faceID' in object; }