Standard

const SomeName = (function SomePage() {
  const init = () => {}
 
  $(init)
 
  return {
    init: init,
  }
})()
 
SomeName.init()

jQuery

;(function SomePage() {
  const init = () => {}
  $(init)
})()