Skip to content

Instantly share code, notes, and snippets.

@kamleshchandnani
Last active December 2, 2017 14:55
Show Gist options
  • Save kamleshchandnani/080b477a3266baebe3683ad6b0f30ade to your computer and use it in GitHub Desktop.
Save kamleshchandnani/080b477a3266baebe3683ad6b0f30ade to your computer and use it in GitHub Desktop.
// File log.js
define(['logModule'], function(){
// export (expose) foo for other modules
return {
log: function(){
console.log('Example of AMD module system');
}
};
});
// File index.js
require(['log'], function (logModule) {
logModule.log();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment