UNPKG

152 BJavaScriptView Raw
1// function getFoo is not accessible from outside
2// how to unit test it?
3(function reallyPrivate() {
4 function getFoo() {
5 return 'foo';
6 }
7}());