UNPKG

php-wasm

Version:

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

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