Skip to content

Commit

Permalink
Merge pull request #388 from shubham1206agra/fix-typo
Browse files Browse the repository at this point in the history
  • Loading branch information
thienlnam authored Oct 5, 2023
2 parents 03f8106 + b9277c9 commit f56f0c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/storage/providers/IDBKeyVal.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const provider = {
return getValues.then((values) => {
const upsertMany = _.map(pairs, ([key, value], index) => {
const prev = values[index];
const newValue = utils.fastMarge(prev, value);
const newValue = utils.fastMerge(prev, value);
return promisifyRequest(store.put(newValue, key));
});
return Promise.all(upsertMany);
Expand Down

0 comments on commit f56f0c8

Please sign in to comment.