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

7 lines
130 B
Ruby
Raw Normal View History

module Puppet::Parser::Functions
newfunction(:strlength, :type => :rvalue) do |args|
2009-04-30 19:43:09 +02:00
args[0].to_s.length
end
end