Welcome to mirror list, hosted at ThFree Co, Russian Federation.

constModule.js « testLib - github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 042b7970e3bccf652e2e0a091d822daac1ae273c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
const someOtherModule = require("./someOtherModule");
const language = "nl";

module.exports.getLang = () => {
    return language;
}

exports.getOtherModuleName = () => {
    return someOtherModule.name;
}

exports.filename = __filename;
exports.dirname = __dirname;