Skip to content

Commit

Permalink
Merge 282872f into e95d364
Browse files Browse the repository at this point in the history
  • Loading branch information
mccraveiro committed Apr 26, 2018
2 parents e95d364 + 282872f commit 39029e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ var LivePatch = function(fn) {
this.parser.onopenobject = function(key) {
self._startObject();

if (key) {
if (typeof key !== 'undefined') {
self._pushKey(key);
}
};
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "livepatch",
"version": "1.1.1",
"version": "1.1.2",
"description": "Patch JSON streams on the fly",
"main": "lib/index.js",
"scripts": {
Expand All @@ -22,7 +22,7 @@
},
"homepage": "https://github.com/pagarme/livepatch",
"dependencies": {
"clarinet": "^0.11.0",
"clarinet": "0.12.0",
"through2": "^2.0.0"
},
"devDependencies": {
Expand Down

0 comments on commit 39029e7

Please sign in to comment.