lighttroupe/luz-next

View on GitHub
utils/addons/numeric.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Numeric
    def clamp(low, high)
        return low if self <= low
        return high if self >= high
        self
    end

    def squared
        self * self
    end
end