react-native-photos-framework
Version:
Use Apples Photos Framework with react-native to fetch media from CameraRoll and iCloud
11 lines (10 loc) • 353 B
JavaScript
/**
* Given an array of libraries already imported and packageName that will be
* added, returns true or false depending on whether the library is already linked
* or not
*/
module.exports = function hasLibraryImported(libraries, packageName) {
return libraries.children
.filter(library => library.comment === packageName)
.length > 0;
};