Bones/node_modules/systemjs/test/tests/amd-format.js
SOUTHERNCO\x2mjbyrn 7efe7605b8 Template Upload
2017-05-17 13:45:25 -04:00

19 lines
215 B
JavaScript

/*
this is AMD
*/
// works with comments!!!
/*
At least I hope so
*/
"amd";
var m = {
amd: 'amd'
};
define(m);
// attempt to fool amd detection
if (typeof module != 'undefined')
module.exports = 'hello';