import { Process } from "https://deno.land/std@0.172.0/node/process.ts";
Properties
https://nodejs.org/api/process.html#process_process_argv Read permissions are required in order to get the executable route
https://nodejs.org/api/process.html#process_process_env Requires env permissions
Returns the current high-resolution real time in a [seconds, nanoseconds] tuple.
Note: You need to give --allow-hrtime permission to Deno to actually get nanoseconds precision values. If you don't give 'hrtime' permission, the returned values only have milliseconds precision.
time
is an optional parameter that must be the result of a previous process.hrtime() call to diff with the current time.
These times are relative to an arbitrary time in the past, and not related to the time of day and therefore not subject to clock drift. The primary use is for measuring performance between intervals. https://nodejs.org/api/process.html#process_process_hrtime_time
Methods
This method is removed on Windows
This method is removed on Windows