Sha256: 6ab2af5799f153308be21e59e859e8ac69fa39162d569a79078558061f2f526e
Contents?: true
Size: 407 Bytes
Versions: 8
Compression:
Stored size: 407 Bytes
Contents
# frozen_string_literal: true module Leftovers module Processors class Itself include ComparableInstance def initialize(then_processor) @then_processor = then_processor freeze end def process(_str, current_node, matched_node, acc) @then_processor.process(current_node.to_s, current_node, matched_node, acc) end freeze end end end
Version data entries
8 entries across 8 versions & 1 rubygems