Sha256: 3fcccf7828013205d461b8898e744877de06cf2f90cfd44513a9bdde1e3c1d4d
Contents?: true
Size: 430 Bytes
Versions: 8
Compression:
Stored size: 430 Bytes
Contents
# frozen_string_literal: true module Leftovers module Processors class Downcase include ComparableInstance def initialize(then_processor) @then_processor = then_processor freeze end def process(str, current_node, matched_node, acc) return unless str @then_processor.process(str.downcase, current_node, matched_node, acc) end freeze end end end
Version data entries
8 entries across 8 versions & 1 rubygems