UNPKG

190 BJavaScriptView Raw
1const pushInstruction = require('./pushInstruction');
2
3const pushInstructions = (commands) => {
4 commands.map((command) => pushInstruction(command));
5};
6
7module.exports = pushInstructions;