1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-11 02:49:06 +00:00
Files
UXP/devtools/client/debugger/test/mochitest/code_blackboxing_blackboxme.js
T

10 lines
140 B
JavaScript

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