Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102303337
makeSerializable.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Feb 19, 07:32
Size
660 B
Mime Type
text/x-c++
Expires
Fri, Feb 21, 07:32 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24327444
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
makeSerializable.js
View Options
/*
MIT License http://www.opensource.org/licenses/mit-license.php
*/
"use strict"
;
const
{
register
}
=
require
(
"./serialization"
);
class
ClassSerializer
{
constructor
(
Constructor
)
{
this
.
Constructor
=
Constructor
;
this
.
hash
=
null
;
}
serialize
(
obj
,
context
)
{
obj
.
serialize
(
context
);
}
deserialize
(
context
)
{
if
(
typeof
this
.
Constructor
.
deserialize
===
"function"
)
{
return
this
.
Constructor
.
deserialize
(
context
);
}
const
obj
=
new
this
.
Constructor
();
obj
.
deserialize
(
context
);
return
obj
;
}
}
module
.
exports
=
(
Constructor
,
request
,
name
=
null
)
=>
{
register
(
Constructor
,
request
,
name
,
new
ClassSerializer
(
Constructor
));
};
Event Timeline
Log In to Comment