module-common/lib/puppet/parser/functions/strlength.rb

7 lines
129 B
Ruby
Raw Normal View History

module Puppet::Parser::Functions
newfunction(:strlength, :type => :rvalue) do |args|
2009-06-10 20:00:31 +02:00
args[0].to_s.length
end
end