I have a javascript function initStandardProviders() which is being rendered when I load the application and the same function is loaded from diffrent modules as well. Is there an option to prevent this function from being loaded multiple time inside the same function?
function initStandardProviders(){
//A random function which should be loaded only once.
}