Skip to content

Instantly share code, notes, and snippets.

@jugyo
Created February 3, 2018 15:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jugyo/9b6d79ce4ca91c8e37448a331f2d2564 to your computer and use it in GitHub Desktop.
Save jugyo/9b6d79ce4ca91c8e37448a331f2d2564 to your computer and use it in GitHub Desktop.
Time#milliseconds
class Time
unless Time.method_defined?(:milliseconds)
def milliseconds
(to_f * 1000).to_i
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment