1var b = require('./b')
2
3exports.getA = function () {
4  return 'a' + b.getB()
5}
6