diff --git a/src/storage/memory/data-source.ts b/src/storage/memory/data-source.ts index 9d3ac8dd..dc46992e 100644 --- a/src/storage/memory/data-source.ts +++ b/src/storage/memory/data-source.ts @@ -29,7 +29,7 @@ export class InMemoryDataSource implements IDataSource { /** loads from value from the memory */ async load(): Promise { - return Array.from(this._data.values()); + return this._data; } /** deletes from value from the memory */