Sha256: d6851fe9915f8bed6fb73d30179ccca9118470ee7023d9c2233360c212e8aeb7

Contents?: true

Size: 283 Bytes

Versions: 1

Compression:

Stored size: 283 Bytes

Contents

# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2023-2024, by Samuel Williams.

module Console
	module Output
		class Null
			def initialize(...)
			end
			
			def last_output
				self
			end
			
			def call(...)
				# Do nothing.
			end
		end
	end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
console-1.29.0 lib/console/output/null.rb