don't serialize twice
This commit is contained in:
parent
328baeb35f
commit
93bff42997
@ -31,8 +31,8 @@ export abstract class Persistent implements Assignable, Serializable {
|
||||
|
||||
public serialize (formatted = false): string {
|
||||
if (formatted)
|
||||
return JSON.stringify (this.to_object ());
|
||||
return JSON.stringify (this.to_object (), null, 2);
|
||||
return JSON.stringify (this._data);
|
||||
return JSON.stringify (this._data, null, 2);
|
||||
}
|
||||
|
||||
private check_type (value: unknown, prop: PersistentTypeString): boolean {
|
||||
|
Loading…
x
Reference in New Issue
Block a user