mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
6d92cc736d
PR-URL: https://github.com/nodejs/node/pull/46408 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
31 lines
938 B
JavaScript
31 lines
938 B
JavaScript
'use strict';
|
|
// Refs: https://github.com/nodejs/node/issues/7788
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const path = require('../common/fixtures').path;
|
|
const repl = require('repl');
|
|
const stream = require('stream');
|
|
const inputStream = new stream.PassThrough();
|
|
const outputStream = new stream.PassThrough();
|
|
const fixture = path('is-object.js');
|
|
const r = repl.start({
|
|
input: inputStream,
|
|
output: outputStream,
|
|
useGlobal: false,
|
|
});
|
|
|
|
let output = '';
|
|
outputStream.setEncoding('utf8');
|
|
outputStream.on('data', (data) => output += data);
|
|
|
|
r.on('exit', common.mustCall(() => {
|
|
const results = output.replace(/^> /mg, '').split('\n');
|
|
|
|
assert.deepStrictEqual(results, ['undefined', 'true', 'true', '']);
|
|
}));
|
|
|
|
inputStream.write('const isObject = (obj) => obj.constructor === Object;\n');
|
|
inputStream.write('isObject({});\n');
|
|
inputStream.write(`require('${fixture}').isObject({});\n`);
|
|
r.close();
|