fn{Function}
This property is an extension by Node.js. It is not available in Web browsers.
Wraps a function within a new function that measures the running time of the
wrapped function. A PerformanceObserver must be subscribed to the 'function'
event type in order for the timing details to be accessed.
const {performance,PerformanceObserver} = require('perf_hooks');function someFunction() {console.log('hello world');}const wrapped = performance.timerify(someFunction);const obs = new PerformanceObserver((list) => {console.log(list.getEntries()[0].duration);obs.disconnect();});obs.observe({ entryTypes: ['function'] });// A performance timeline entry will be createdwrapped();
