UNPKG

nitro-codegen

Version:

The code-generator for react-native-nitro-modules.

8 lines (7 loc) 199 B
export function groupByPlatform(files) { const result = { shared: [], ios: [], android: [] }; for (const file of files) { result[file.platform].push(file); } return result; }