Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/pptr/mod.ts>WebWorker#evaluate

Headless Chrome Deno API
Latest
method WebWorker.prototype.evaluate
Re-export
import { WebWorker } from "https://deno.land/x/pptr@1.2.0/mod.ts";

If the function passed to the worker.evaluate returns a Promise, then worker.evaluate would wait for the promise to resolve and return its value. If the function passed to the worker.evaluate returns a non-serializable value, then worker.evaluate resolves to undefined. DevTools Protocol also supports transferring some additional values that are not serializable by JSON: -0, NaN, Infinity, -Infinity, and bigint literals. Shortcut for await worker.executionContext()).evaluate(pageFunction, ...args).

Type Parameters

ReturnType extends any

Parameters

pageFunction: Function | string
  • Function to be evaluated in the worker context.
...args: any[]
  • Arguments to pass to pageFunction.

Returns

Promise<ReturnType>

Promise which resolves to the return value of pageFunction.