UNPKG

react-native-photos-framework

Version:

Use Apples Photos Framework with react-native to fetch media from CameraRoll and iCloud

12 lines (9 loc) 257 B
module.exports = function removeProductGroup(project, productGroupId) { const section = project.hash.project.objects.PBXGroup; for (var key of Object.keys(section)) { if (key === productGroupId) { delete section[key]; } } return; };