UNPKG
mock-xmlhttprequest
Version:
latest (8.4.1)
8.4.1
8.4.0
8.3.0
8.2.0
8.1.0
8.0.1
8.0.0
7.0.4
7.0.3
7.0.2
7.0.1
7.0.0
6.2.0
6.1.1
6.1.0
6.0.0
5.1.0
5.0.0
4.4.1
4.4.0
4.3.1
4.3.0
4.2.0
4.1.0
4.0.0
3.3.0
3.2.2
3.2.1
3.2.0
3.1.0
3.0.0
2.0.0
1.2.0
1.1.0
1.0.1
XMLHttpRequest mock for testing
github.com/berniegp/mock-xmlhttprequest
berniegp/mock-xmlhttprequest
mock-xmlhttprequest
/
dist
/
esm
/
XhrEvent.mjs
20 lines
(17 loc)
•
274 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/** * mock-xmlhttprequest v8.4.1 * (c) 2025 Bertrand Guay-Paquet *
@license
MIT
*/
/** * XMLHttpRequest Event */
class
XhrEvent
{
/** *
@param
type Event type */
constructor
(
type
) {
this
.
type
=
type
; } }
export
{
XhrEvent
as
default
};