fuel-plugin-sensu/deployment_scripts/puppet/files/embedded/lib/ruby/gems/2.3.0/gems/dentaku-2.0.9/lib/dentaku/ast/functions/round.rb

6 lines
140 B
Ruby

require_relative '../function'
Dentaku::AST::Function.register(:round, :numeric, ->(numeric, places=nil) {
numeric.round(places || 0)
})