class Faceter::Nodes::SymbolizeKeys

The node describes stringifying keys of tuple (and its nested tuples)

@api private

Public Instance Methods

transproc() click to toggle source

Transformer function, defined by the node

@return [Transproc::Function]

# File lib/faceter/nodes/symbolize_keys.rb, line 17
def transproc
  fn = Functions[:symbolize_keys]
  nested ? Functions[:recursion, Functions[:is, Hash, fn]] : fn
end