Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100968088
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
Tue, Feb 4, 09:46
Size
660 B
Mime Type
text/x-c++
Expires
Thu, Feb 6, 09:46 (2 d)
Engine
blob
Format
Raw Data
Handle
24063306
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