Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
{this.state.photos.map(photoUri => (
))}
detectFace = photoUri =>
FaceDetector.detectFacesAsync(`${FileSystem.documentDirectory}photos/${photoUri}`, {
detectLandmarks: FaceDetector.Constants.Landmarks.none,
runClassifications: FaceDetector.Constants.Classifications.all,
})
.then(this.facesDetected)
.catch(this.handleFaceDetectionError);