Renamed files
This commit is contained in:
committed by
Nicolò Ribaudo
parent
07e69c009b
commit
0f42accb87
@@ -0,0 +1,25 @@
|
||||
var foo;
|
||||
|
||||
foo = function foo() {};
|
||||
|
||||
var _baz;
|
||||
|
||||
_baz = function baz() {
|
||||
_baz();
|
||||
};
|
||||
|
||||
_baz = 12;
|
||||
|
||||
bar = function (_bar) {
|
||||
function bar() {
|
||||
return _bar.apply(this, arguments);
|
||||
}
|
||||
|
||||
bar.toString = function () {
|
||||
return _bar.toString();
|
||||
};
|
||||
|
||||
return bar;
|
||||
}(function () {
|
||||
bar();
|
||||
});
|
||||
Reference in New Issue
Block a user