18 lines
287 B
JavaScript
18 lines
287 B
JavaScript
|
/*global define: true */
|
||
|
define( [], function() {
|
||
|
"use strict";
|
||
|
|
||
|
/**
|
||
|
* My example module.
|
||
|
* @exports exampleModule
|
||
|
*/
|
||
|
let myModule = {
|
||
|
/**
|
||
|
* My example method.
|
||
|
*/
|
||
|
exampleMethod: function() {}
|
||
|
};
|
||
|
|
||
|
return myModule;
|
||
|
} );
|