milliseconds_of_the_nanos function

BigInt milliseconds_of_the_nanos(
  1. BigInt nanos
)

Implementation

BigInt milliseconds_of_the_nanos(BigInt nanos) {
    return nanos ~/ BigInt.from(1000000);
}