Added serialization and deserialization support for `DOMException`. Co-Authored-By: jazelly <xzha4350@gmail.com> PR-URL: https://github.com/nodejs/node/pull/58649 Fixes: https://github.com/nodejs/node/issues/49181 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ethan Arrowood <ethan@arrowood.dev> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jason Zhang <xzha4350@gmail.com>
7 lines
151 B
JavaScript
7 lines
151 B
JavaScript
'use strict';
|
|
|
|
// Delegate to the actual DOMException implementation.
|
|
module.exports = {
|
|
DOMException: internalBinding('messaging').DOMException,
|
|
};
|