Skip to content

Commit

Permalink
Exporting getObjectDiff() function on Dexie object.
Browse files Browse the repository at this point in the history
  • Loading branch information
dfahlander committed May 10, 2016
1 parent 8868e5b commit 9a935c3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Dexie.js
Original file line number Diff line number Diff line change
Expand Up @@ -3060,7 +3060,7 @@ props(Dexie, {
delByKeyPath: delByKeyPath,
shallowClone: shallowClone,
deepClone: deepClone,
fakeAutoComplete: fakeAutoComplete,
getObjectDiff: getObjectDiff,
asap: asap,
maxKey: maxKey,
// Addon registry
Expand Down Expand Up @@ -3094,6 +3094,7 @@ props(Dexie, {
version: DEXIE_VERSION.split('.')
.map(n => parseInt(n))
.reduce((p,c,i) => p + (c/Math.pow(10,i*2))),
fakeAutoComplete: fakeAutoComplete,

// https://github.com/dfahlander/Dexie.js/issues/186
// typescript compiler tsc in mode ts-->es5 & commonJS, will expect require() to return
Expand Down

0 comments on commit 9a935c3

Please sign in to comment.