Bones/node_modules/systemjs/test/tests/amd-module-3.js

14 lines
244 B
JavaScript
Raw Normal View History

2017-05-17 13:45:25 -04:00
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 };
});