const settings = function(settings) { //Other private information/methods const makeDialog = function() {}; return { //Public api openPopup: function { return makeDialog().open(), this; }, closePopup: function {} }; };