Bash script to:
- Iterate all commits made within a Git repository.
- List every object at each commit.
| hasValue = function (value) { | |
| if (typeof value === 'undefined') { | |
| return false; | |
| } | |
| if (value === null) { | |
| return false; | |
| } | |
| if (Object.prototype.hasOwnProperty.call(value, 'length') && value.length === 0) { |