Files
mongo/buildscripts/util/time.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
114 B
Python
Raw Normal View History

"""Utilities for working with time."""
def ns2sec(ns):
"""Convert ns to seconds."""
return ns / (10**9)