seconds_of_the_nanos function

BigInt seconds_of_the_nanos(
  1. BigInt nanos
)

Implementation

BigInt seconds_of_the_nanos(BigInt nanos) {
    return nanos ~/ BigInt.from(1000000000);
}