module Cryptowatch::Utils
Public Class Methods
time_elapsed(start, finish)
click to toggle source
# File lib/cryptowatch/utils.rb, line 9 def self.time_elapsed(start, finish) return ((finish - start) * 1000.0) end