UNPKG

react-native-photos-framework

Version:

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

10 lines (8 loc) 255 B
const makeCommand = require('../makeCommand'); module.exports = function wrapCommands(commands) { const mappedCommands = {}; Object.keys(commands || []).forEach((k) => mappedCommands[k] = makeCommand(commands[k]) ); return mappedCommands; };