-
-
Save connordavison/fbcf2e98d3355f30ce0f to your computer and use it in GitHub Desktop.
Require bug. To execute; run `node c.js`.
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
| var B = require('./b'); | |
| module.exports = function () {}; |
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
| var A = require('./a'); | |
| module.exports = function (a) { return a instanceof A; }; |
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
| var A = require('./a'); | |
| var B = require('./b'); | |
| var b = new B(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment