UNPKG

php-wasm

Version:

Run PHP right in the browser or anywhere else JS can run.

11 lines (9 loc) 183 B
import { PhpBase } from './PhpBase.mjs'; import PhpBinary from './php-worker.mjs'; export class PhpWorker extends PhpBase { constructor(args = {}) { super(PhpBinary, args); } }