$
This commit is contained in:
27
node_modules/webpack/lib/serialization/ErrorObjectSerializer.js
generated
vendored
Normal file
27
node_modules/webpack/lib/serialization/ErrorObjectSerializer.js
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
MIT License http://www.opensource.org/licenses/mit-license.php
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
class ErrorObjectSerializer {
|
||||
constructor(Type) {
|
||||
this.Type = Type;
|
||||
}
|
||||
|
||||
serialize(obj, { write }) {
|
||||
write(obj.message);
|
||||
write(obj.stack);
|
||||
}
|
||||
|
||||
deserialize({ read }) {
|
||||
const err = new this.Type();
|
||||
|
||||
err.message = read();
|
||||
err.stack = read();
|
||||
|
||||
return err;
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = ErrorObjectSerializer;
|
Reference in New Issue
Block a user