Created
January 19, 2019 11:16
-
-
Save KokaKiwi/0c2788bde0f51ac12c4dbfba7b0a0bac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let name = null; | |
module.exports = { | |
name, | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let a = require('./a'); | |
let b = require('./b'); | |
a.shared.name = "toto"; | |
console.log(b.shared.name); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment