mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-18 14:53:14 +00:00
10 lines
111 B
JavaScript
10 lines
111 B
JavaScript
// a.js
|
|
var c = require("./c.js");
|
|
var b = require('./b.js');
|
|
|
|
module.exports = {
|
|
name: "a",
|
|
b: b,
|
|
c: c
|
|
};
|