You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
michel@h9:~/$ node
> var test = require('./test.js')
undefined
> test(function() {})
false
Expected behavior would be:
michel@h9:~/$ node
> var test = require('./test.js')
undefined
> test(function() {})
true
The text was updated successfully, but these errors were encountered:
addaleax
added
duplicate
Issues and PRs that are duplicates of other issues or PRs.
repl
Issues and PRs related to the REPL subsystem.
labels
Aug 13, 2016
Apologies if this is working as intended, but while I have a few theories on what's going on, I didn't find a clear answer to explain this issue.
Version:
Platform:
Test case:
File test.js
Open the command line with
node
Expected behavior would be:
The text was updated successfully, but these errors were encountered: