UNPKG

210 BJavaScriptView Raw
1const cloneDeep = require('lodash/cloneDeep');
2
3const instRegistry = require('./instRegistry');
4
5const getInstructions = () => {
6 return cloneDeep(instRegistry.getAll());
7};
8
9module.exports = getInstructions;