UNPKG

mock-xmlhttprequest

Version:
22 lines (18 loc) 284 B
/** * mock-xmlhttprequest v8.4.1 * (c) 2025 Bertrand Guay-Paquet * @license MIT */ 'use strict'; /** * XMLHttpRequest Event */ class XhrEvent { /** * @param type Event type */ constructor(type) { this.type = type; } } module.exports = XhrEvent;