mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 23:56:29 +02:00
10 lines
217 B
JavaScript
10 lines
217 B
JavaScript
/* eslint-env node */
|
|
var b = exports;
|
|
b.done = false;
|
|
var a = require('./a.js');
|
|
b.done = true;
|
|
b.name = 'b';
|
|
b['a.done?'] = a.done;
|
|
b['b.done?'] = b.done;
|
|
|
|
print('from b.js a.done =', a.done, '/ b.done =', b.done);
|