mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
8c0f776f23
15157c3c3d
changed the CLI REPL
to default to useGlobal: false by default. This caused the
regression seen in https://github.com/nodejs/node/issues/7788.
This commit adds a known issue test while a proper resolution
is determined.
Refs: https://github.com/nodejs/node/pull/5703
Refs: https://github.com/nodejs/node/issues/7788
PR-URL: https://github.com/nodejs/node/pull/7793
Reviewed-By: Rich Trott <rtrott@gmail.com>
3 lines
77 B
JavaScript
3 lines
77 B
JavaScript
'use strict';
|
|
module.exports.isObject = (obj) => obj.constructor === Object;
|