Bones/node_modules/systemjs/test/tests/amd-format.js

19 lines
215 B
JavaScript
Raw Normal View History

2017-05-17 13:45:25 -04:00
/*
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';