serradura/ruby-lambdas

View on GitHub
lib/ruby/lambdas/objects/to_export.rb

Summary

Maintainability
A
0 mins
Test Coverage
module RubyLambdas
  module Objects
    module ToExport
      ToS = -> data { data.to_s }
    end

    ALIASES = {
      ToS: :ToString
    }.freeze
  end
end