mirror of https://github.com/nodejs/node.git
14 lines
413 B
JavaScript
14 lines
413 B
JavaScript
// Flags: --expose-internals --no-warnings
|
|
'use strict';
|
|
require('../common');
|
|
|
|
const { internalBinding } = require('internal/test/binding');
|
|
const { TTY } = internalBinding('tty_wrap');
|
|
const { WriteWrap } = internalBinding('stream_wrap');
|
|
|
|
const handle = new TTY(1);
|
|
const req = new WriteWrap();
|
|
|
|
handle.writeBuffer(req, Buffer.from('hello world 1\n'));
|
|
handle.writeBuffer(req, Buffer.from('hello world 2\n'));
|