Serialization work in progress

This commit is contained in:
barsdeveloper
2021-10-17 21:54:40 +02:00
parent 16fd34fa84
commit 9caea42101
29 changed files with 635 additions and 242 deletions

View File

@@ -0,0 +1,9 @@
import Serializer from "./Serializer";
export default class ObjectSerializer extends Serializer {
write(object) {
let result = `Pin (${this.constructor.subWrite('', this)})`
return result
}
}