create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
25 lines (21 loc) • 588 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = removeProductGroup;
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
function removeProductGroup(project, productGroupId) {
const section = project.hash.project.objects.PBXGroup;
for (const key of Object.keys(section)) {
if (key === productGroupId) {
delete section[key];
}
}
}
//# sourceMappingURL=removeProductGroup.js.map
;