mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-25 14:57:38 +00:00
14 lines
395 B
JavaScript
14 lines
395 B
JavaScript
var Showdown = { converter: true };
|
|
|
|
// export
|
|
if (typeof module !== 'undefined') module.exports = Showdown;
|
|
|
|
// stolen from AMD branch of underscore
|
|
// AMD define happens at the end for compatibility with AMD loaders
|
|
// that don't enforce next-turn semantics on modules.
|
|
if (typeof define === 'function' && define.amd) {
|
|
define('tests/nameddefine.js', {
|
|
another: 'define'
|
|
});
|
|
}
|