UNPKG

@fakes/media-devices

Version:

A interactive fake implementation of MediaDevices interface in the browser for testing

10 lines (9 loc) 219 B
export class ThrowingNotImplemented { constructor(_reporter) { this._reporter = _reporter; } call(message) { this._reporter.notImplemented(message); throw new Error(message); } }