systemjs/test/tests/commonjs-requires.js
2015-05-12 13:52:52 +02:00

13 lines
251 B
JavaScript

exports.d1 = require(
'./commonjs-d.js'
);
exports.d2 = (require
("./commonjs-d.js"));
exports.d3 = "require('not a dep')";
// exports.d4 = "text require('still not a dep') text";
// exports.d5 = 'text \'quote\' require("yet still not a dep")';