aboutsummaryrefslogtreecommitdiff
path: root/plugins/puppet/parser/functions/strlength.rb
blob: 8f93e4e8102d78310c9a5b08a8c7911d4c1edc21 (plain)
1
2
3
4
5
6
module Puppet::Parser::Functions
    newfunction(:strlength, :type => :rvalue) do |args|
       args[0].to_s.length 
    end
end