Closed
Description
With the given file:
console.js
const repl = require('repl');
repl.start('> ');
Then running in nodejs 11 & 12:
$ node console.js
> console.log({} instanceof Object)
false
But running with nodejs 10:
$ node console.js
> console.log({} instanceof Object)
true
I am expecting to be true
in all cases, did I miss something?