Inlementation of module pattern for loading the content dynamically on web site.
html
`$3
`javascript
module.define('module-name', (function(){ // Return something
})());
`$3
`javascript
const func = module.require('module-name');// Do something with func
`Built-in modules
$3
Load html, javascript, css content dynamically.#### Example:
`javascript
const load = module.require('load');load('html-url')
.then((html)=>{
// Do something with html
})
.load('script-url')
.then(()=>{
// Do something after loading script
})
.load('style.css');
``