Say i want to develop a library that will keep a very small core and may be extended through plugins.
So i basically came up with something in the scale of:
(function(window){
window.SomeLibrary =(function(){
var api = {
init: function(){
console.log('hi');
privateFunction();
},
plugin: function(callback) {
callback.call();
}
};
var privateFunction = function() {
console.log('im a private method');
};
return api;
}());
})(window);
SomeLibrary.init();
SomeLibrary.plugin(function(){
console.log('im a plugin');
privateFunction(); //fails;
});
How can i make the plugin callback executes SomeLibrary private and public methods?
Thanks in advance.