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