Skip to content

Commit

Permalink
Merge pull request #30 from omgaz/upgrade-deps
Browse files Browse the repository at this point in the history
[patch] upgrade deps
  • Loading branch information
omgaz authored Oct 12, 2020
2 parents 90a8c9d + 9cc13aa commit f2bab9d
Show file tree
Hide file tree
Showing 4 changed files with 738 additions and 740 deletions.
5 changes: 5 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
.travis.yml
tests
src
.eslintrc
.eslintignore
.gitignore
stuff
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
* @license MIT https://github.com/omgaz/diffler
* Author: Gary Chisholm @omgaz
*/
function diffler(f,e){var o={};for(var r in f)if(f.hasOwnProperty(r)&&"function"!=typeof f[r]){var n=f[r],t=e[r];if(r in e)if("object"==typeof n){var i=diffler(n,t);0<Object.keys(i).length&&i&&(o[r]=i)}else n!==t&&(o[r]={from:n,to:t});else o[r]={from:n,to:null}}for(r in e)if(e.hasOwnProperty(r)&&"function"!=typeof e[r]){n=f[r],t=e[r];r in f||((o=o||{})[r]={from:null,to:t})}return o}module.exports=diffler;
function diffler(o,f){var n,r,t,e,i={};for(n in o){o.hasOwnProperty(n)&&"function"!=typeof o[n]&&(t=o[n],e=f[n],n in f?"object"==typeof t?(r=diffler(t,e),0<Object.keys(r).length&&r&&(i[n]=r)):t!==e&&(i[n]={from:t,to:e}):i[n]={from:t,to:null})}for(n in f){f.hasOwnProperty(n)&&"function"!=typeof f[n]&&(t=o[n],e=f[n],n in o||((i=i||{})[n]={from:null,to:e}))}return i}module.exports=diffler;
Loading

0 comments on commit f2bab9d

Please sign in to comment.