MrJoy/code_counter

View on GitHub
lib/code_counter/math_helpers.rb

Summary

Maintainability
A
0 mins
Test Coverage
module CodeCounter
  module MathHelpers
    def safe_div(x, y)
      return (y != 0) ? (x / y) : 0
    end
  end
end