mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-28 16:24:56 +01:00
7 lines
114 B
Python
7 lines
114 B
Python
"""Utilities for working with time."""
|
|
|
|
|
|
def ns2sec(ns):
|
|
"""Convert ns to seconds."""
|
|
return ns / (10**9)
|