Browserify hides the functions I need to call through the inline script to another scope from which I can no longer pull them out. How to avoid this problem?

(function() { function r(e, n, t) { function o(i, f) { if (!n[i]) { if (!e[i]) { var c = 'function' == typeof require && require; if (!f && c) return c(i, !0); if (u) return u(i, !0); var a = new Error("Cannot find module '" + i + "'"); throw ((a.code = 'MODULE_NOT_FOUND'), a); } var p = (n[i] = { exports: {} }); e[i][0].call( p.exports, function(r) { var n = e[i][1][r]; return o(n || r); }, p, p.exports, r, e, n, t ); } return n[i].exports; } for ( var u = 'function' == typeof require && require, i = 0; i < t.length; i++ ) o(t[i]); return o; } return r; })()( { 1: [ //ΠžΡ‡Π΅Π½ΡŒ ΠΌΠ½ΠΎΠ³ΠΎ ΠΊΠΎΠ΄Π° содСрТащСго всС Π½ΠΈΠΆΠ΅ΠΈΠ·Π»ΠΎΠΆΠ΅Π½Π½Ρ‹Π΅ Ρ„ΡƒΠ½ΠΊΡ†ΠΈΠΈ. function common() { initDropdowns(); initMobileMenu(); } function frontpage() { initFrontpageBanner(); initFrontpageSpecialists(); initFrontpageWorkexampleSlider(); initFrontpageHappyReviews(); initFrontpageMapDropdowns(); window.addEventListener('resize', function() { initFrontpageMapDropdowns(); }); } }, {} ] }, {}, [1] ); 

(The functions common and frontpage should be accessible from inline script code)

  • hang them on the window (window.frontpage = frontpage;) - Stranger in the Q
  • hit everything on the modules and everything works through import / export. - Sergey Petrashko

0