blob: 6c9128051a8f3bda1c9b022b35fd3ce6f8d44e4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
define([
// with a single-line comment
'./amd-module.js',
/* with a multi-line
comment
*/
'./amd-module.js'
// trailing single-line comment
/* trailing multi-line
comment */
], function () {
return { amd: true };
});
|