time-to-botec/js/node_modules/@stdlib/streams/node/split/lib/index.js
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

90 lines
2.0 KiB
JavaScript

/**
* @license Apache-2.0
*
* Copyright (c) 2018 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict';
/**
* Transform stream which splits streamed data.
*
* @module @stdlib/streams/node/split
*
* @example
* var stdout = require( '@stdlib/streams/node/stdout' );
* var splitStream = require( '@stdlib/streams/node/split' );
*
* var stream = splitStream();
*
* stream.pipe( stdout );
*
* stream.write( '1\n2\n3' );
* stream.end();
* // => '1' => '2' => '3'
*
* @example
* var splitStream = require( '@stdlib/streams/node/split' );
*
* var opts = {
* 'sep': '\t',
* 'objectMode': true,
* 'encoding': 'utf8',
* 'highWaterMark': 64
* };
*
* var factory = splitStream.factory( opts );
*
* // Create 10 identically configured streams...
* var streams = [];
* var i;
* for ( i = 0; i < 10; i++ ) {
* streams.push( factory() );
* }
*
* @example
* var stdout = require( '@stdlib/streams/node/stdout' );
* var splitStream = require( '@stdlib/streams/node/split' );
*
* var stream = splitStream.objectMode({
* 'sep': ','
* });
*
* stream.pipe( stdout );
*
* stream.write( 'a,b,c' );
* stream.end();
* // => 'a' => 'b' => 'c'
*/
// MODULES //
var setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' );
var stream = require( './main.js' );
var objectMode = require( './object_mode.js' );
var factory = require( './factory.js' );
// MAIN //
setReadOnly( stream, 'objectMode', objectMode );
setReadOnly( stream, 'factory', factory );
// EXPORTS //
module.exports = stream;