Home Manual Reference Source Test Repository

src/tools/exhaust.js


/**
 * Exhausts a stream.
 * @param {Stream} stream the stream to read from
 */
export function exhaust ( stream ) {

	while ( stream.read( ) !== null ) ;

}