mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 23:36:41 +02:00
17 lines
320 B
JavaScript
17 lines
320 B
JavaScript
/* eslint-env node */
|
|
/* global print */
|
|
/* eslint-disable comma-dangle */
|
|
|
|
print('main.js');
|
|
var a = require('./a.js'),
|
|
b = require('./b.js');
|
|
|
|
print('from main.js a.done =', a.done, 'and b.done =', b.done);
|
|
|
|
module.exports = {
|
|
name: 'main',
|
|
a: a,
|
|
b: b,
|
|
'a.done?': a.done,
|
|
'b.done?': b.done,
|
|
};
|