@robotical/martyblocks
Version:
MartyBlocks based on Scratch for Marty the Robot by Robotical
20 lines (15 loc) • 331 B
JavaScript
module.exports = removeHook;
function removeHook(state, name, method) {
if (!state.registry[name]) {
return;
}
var index = state.registry[name]
.map(function (registered) {
return registered.orig;
})
.indexOf(method);
if (index === -1) {
return;
}
state.registry[name].splice(index, 1);
}