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)
|