mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 20:44:10 +00:00
10 lines
255 B
JavaScript
10 lines
255 B
JavaScript
|
const makeCommand = require('../makeCommand');
|
||
|
|
||
|
module.exports = function wrapCommands(commands) {
|
||
|
const mappedCommands = {};
|
||
|
Object.keys(commands || []).forEach((k) =>
|
||
|
mappedCommands[k] = makeCommand(commands[k])
|
||
|
);
|
||
|
return mappedCommands;
|
||
|
};
|