mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
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;
|
|
} );
|