Measure the time a promise takes to resolve
npm install p-timeimport pTime from 'p-time';
import {execa} from 'execa';
const promise = pTime(execa)('sleep', ['1']);
await promise;
console.log(promise.time);
//=> 1016Returns a decorated version of asyncFunction that when called returns a Promise with a time property of the elapsed time in milliseconds.
Returns a decorated version of asyncFunction that when called logs the elapsed time in milliseconds of the Promise.
Type: Function
Promise-returning/async function.