Classes: CLI
"1.1.0"
11 12 13 14 15 16 17
# File 'lib/cpf_cnpj.rb', line 11 def self.which(input) if CPF.valid?(input) CPF.new(input) elsif CNPJ.valid?(input) CNPJ.new(input) end end