Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
DeeCeeXxx
/
mywork
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
mywork
/
lib
/
lowdb
/
adapters
/
MemorySync.js
DeeCeeXxx
Upload 199 files
6c07b9a
verified
11 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
171 Bytes
class
MemorySync
{
constructor
(
) {
this
.
data
=
null
;
}
read
(
) {
return
this
.
data
||
null
;
}
write
(
obj
) {
this
.
data
= obj;
}
}
module
.
exports
= {
MemorySync
};