node-json-db icon indicating copy to clipboard operation
node-json-db copied to clipboard

Return function push()

Open marlon33 opened this issue 3 years ago • 0 comments

I change this line 277 ~280

dbData.setData(toSet);
      if (this.config.saveOnPush) {
            this.save();
        }

to this

dbData.setData(toSet);
      if (this.config.saveOnPush) {
            this.save();
            return toSet;
        }

if possible can add this to a final code?

marlon33 avatar Jul 21 '22 09:07 marlon33