Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
explicitly return null in getConstructorOf
  • Loading branch information
monsanto committed Aug 7, 2015
commit 38de7501f35fea61c14b8a09684e6f4cb124079f
2 changes: 2 additions & 0 deletions lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,8 @@ function getConstructorOf(obj) {

obj = Object.getPrototypeOf(obj);
}

return null;
}


Expand Down