Dactyloidae/devtools/client/debugger/test/mochitest/code_blackboxing_blackboxme.js

9 lines
140 B
JavaScript

function blackboxme(fn) {
(function one() {
(function two() {
(function three() {
fn();
}());
}());
}());
}