UNPKG

274 BJavaScriptView Raw
1const map = require('lodash/map');
2const compact = require('lodash/compact');
3
4const instRegistry = require('./instRegistry');
5
6const editInstructions = (func) => {
7 instRegistry.replaceAll(compact(map(instRegistry.getAll(), func)));
8};
9
10module.exports = editInstructions;