, .
aaa . bbb . .
JavaScript, :
(() => {
var bar = 1; // there no way to reach this variable from the outside
})();
, . ES- , CommonJS, - ( , Webpack):
exports.aaa = function aaa() {
return exports.bbb();
}
exports.bbb = function bbb() {
return 222;
}
, bbb * import spyOn(util, 'bbb'), . ES-, CommonJS.
, aaa bbb . , ( ES-).